diff options
author | Neil <nyamatongwe@gmail.com> | 2020-11-10 09:02:03 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2020-11-10 09:02:03 +1100 |
commit | 68ae179a5720f2b58b5e94f7298419b1f31c8b0b (patch) | |
tree | e37c6a0a8c312bd65b00aeddfeb9c6347dd4e4c9 | |
parent | b2c399ae8b2a547e77a05f318e58a96fca2d4ea8 (diff) | |
download | scintilla-mirror-68ae179a5720f2b58b5e94f7298419b1f31c8b0b.tar.gz |
Remove WordList from testing as that is now part of Lexilla.
-rw-r--r-- | test/unit/UnitTester.vcxproj | 1 | ||||
-rw-r--r-- | test/unit/makefile | 1 | ||||
-rw-r--r-- | test/unit/test.mak | 1 | ||||
-rw-r--r-- | test/unit/unitTest.cxx | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/test/unit/UnitTester.vcxproj b/test/unit/UnitTester.vcxproj index 65d4c58dc..b9b004154 100644 --- a/test/unit/UnitTester.vcxproj +++ b/test/unit/UnitTester.vcxproj @@ -150,7 +150,6 @@ </Link>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="..\..\lexlib\WordList.cxx" />
<ClCompile Include="..\..\src\CellBuffer.cxx" />
<ClCompile Include="..\..\src\CharClassify.cxx" />
<ClCompile Include="..\..\src\ContractionState.cxx" />
diff --git a/test/unit/makefile b/test/unit/makefile index 05bbed944..ab70d0532 100644 --- a/test/unit/makefile +++ b/test/unit/makefile @@ -49,7 +49,6 @@ CXXFLAGS += -Wall -Wextra TESTSRC=test*.cxx # Files being tested from scintilla/src directory TESTEDSRC=\ - ../../lexlib/WordList.cxx \ ../../src/CellBuffer.cxx \ ../../src/CharClassify.cxx \ ../../src/ContractionState.cxx \ diff --git a/test/unit/test.mak b/test/unit/test.mak index 6503acba4..f9fdab3c8 100644 --- a/test/unit/test.mak +++ b/test/unit/test.mak @@ -12,7 +12,6 @@ CXXFLAGS = /EHsc /std:c++17 /D_HAS_AUTO_PTR_ETC=1 /wd 4805 $(INCLUDEDIRS) TESTSRC=test*.cxx # Files being tested from scintilla/src directory TESTEDSRC=\ - ../../lexlib/WordList.cxx \ ../../src/CellBuffer.cxx \ ../../src/CharClassify.cxx \ ../../src/ContractionState.cxx \ diff --git a/test/unit/unitTest.cxx b/test/unit/unitTest.cxx index 57bf6faee..bff1f9e56 100644 --- a/test/unit/unitTest.cxx +++ b/test/unit/unitTest.cxx @@ -29,7 +29,6 @@ OptionSet PropSetSimple StyleContext - WordList */ #include <cstdio> |