From ce6056d4bc369deea0b0a4c7b7dde2462b1bef70 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Thu, 27 Jul 2017 16:01:02 +0200 Subject: [PATCH] fix #275 - cant run tests under windows (#504) * fix #275 - cant run tests under windows * fix typo --- README.md | 5 +++++ build.bat | 24 +++++++++++++++++++----- src/analysis/helpers.d | 3 ++- src/analysis/lambda_return_check.d | 1 + test.sh | 17 ----------------- 5 files changed, 27 insertions(+), 23 deletions(-) delete mode 100755 test.sh diff --git a/README.md b/README.md index ac69b98..553c0ab 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,11 @@ makefile has "ldc" and "gdc" targets if you'd prefer to compile with one of thes compilers instead of DMD. To install, simply place the generated binary (in the "bin" folder) somewhere on your $PATH. +### Testing +Testing does not work with DUB. +Under linux or OSX run the tests with `make test`. +Under Windows run the tests with `build.bat test`. + ### Installing with DUB ```sh diff --git a/build.bat b/build.bat index 28e21c9..01bd910 100644 --- a/build.bat +++ b/build.bat @@ -1,7 +1,8 @@ @echo off setlocal enabledelayedexpansion -set DFLAGS=-O -release -inline +set DFLAGS=-O -release -inline -version=StdLoggerDisableWarning +set TESTFLAGS=-g -w -version=StdLoggerDisableWarning set CORE= set LIBDPARSE= set STD= @@ -13,8 +14,6 @@ set LIBDDOC= for %%x in (src\*.d) do set CORE=!CORE! %%x for %%x in (src\analysis\*.d) do set ANALYSIS=!ANALYSIS! %%x -for %%x in (libdparse\experimental_allocator\src\std\experimental\allocator\*.d) do set STD=!STD! %%x -for %%x in (libdparse\experimental_allocator\src\std\experimental\allocator\building_blocks\*.d) do set STD=!STD! %%x for %%x in (libdparse\src\dparse\*.d) do set LIBDPARSE=!LIBDPARSE! %%x for %%x in (libdparse\src\std\experimental\*.d) do set LIBDPARSE=!LIBDPARSE! %%x for %%x in (libddoc\src\ddoc\*.d) do set LIBDDOC=!LIBDDOC! %%x @@ -25,6 +24,21 @@ for %%x in (dsymbol\src\dsymbol\conversion\*.d) do set DSYMBOL=!DSYMBOL! %%x for %%x in (containers\src\containers\*.d) do set CONTAINERS=!CONTAINERS! %%x for %%x in (containers\src\containers\internal\*.d) do set CONTAINERS=!CONTAINERS! %%x -@echo on -dmd %CORE% %STD% %LIBDPARSE% %LIBDDOC% %ANALYSIS% %INIFILED% %DSYMBOL% %CONTAINERS% %DFLAGS% -I"libdparse\src" -I"dsymbol\src" -I"containers\src" -I"libddoc\src" -ofbin\dscanner.exe +if "%1" == "test" goto test_cmd +@echo on +dmd %CORE% %STD% %LIBDPARSE% %LIBDDOC% %ANALYSIS% %INIFILED% %DSYMBOL% %CONTAINERS% %DFLAGS% -I"libdparse\src" -I"dsymbol\src" -I"containers\src" -I"libddoc\src" -ofbin\dscanner.exe +goto eof + +:test_cmd +@echo on +set TESTNAME="bin\dscanner-unittest" +dmd %STD% %LIBDPARSE% %LIBDDOC% %INIFILED% %DSYMBOL% %CONTAINERS% -I"libdparse\src" -I"dsymbol\src" -I"containers\src" -I"libddoc\src" -lib %TESTFLAGS% -of%TESTNAME%.lib +if exist %TESTNAME%.lib dmd %CORE% %ANALYSIS% bin\dscanner-unittest.lib -I"src" -I"inifiled\source" -I"libdparse\src" -I"dsymbol\src" -I"containers\src" -I"libddoc\src" -unittest %TESTFLAGS% -of%TESTNAME%.exe +if exist %TESTNAME%.exe %TESTNAME%.exe + +if exist %TESTNAME%.obj del %TESTNAME%.obj +if exist %TESTNAME%.lib del %TESTNAME%.lib +if exist %TESTNAME%.exe del %TESTNAME%.exe + +:eof \ No newline at end of file diff --git a/src/analysis/helpers.d b/src/analysis/helpers.d index 5312ff9..390c7b2 100644 --- a/src/analysis/helpers.d +++ b/src/analysis/helpers.d @@ -50,6 +50,7 @@ void assertAnalyzerWarnings(string code, const StaticAnalysisConfig config, { import analysis.run : parseModule; import dparse.lexer : StringCache, Token; + import std.ascii : newline; StringCache cache = StringCache(StringCache.defaultBucketCount); RollbackAllocator r; @@ -60,7 +61,7 @@ void assertAnalyzerWarnings(string code, const StaticAnalysisConfig config, // Run the code and get any warnings MessageSet rawWarnings = analyze("test", m, config, moduleCache, tokens); - string[] codeLines = code.split("\n"); + string[] codeLines = code.split(newline); // Get the warnings ordered by line string[size_t] warnings; diff --git a/src/analysis/lambda_return_check.d b/src/analysis/lambda_return_check.d index 2ddf874..e85d05b 100644 --- a/src/analysis/lambda_return_check.d +++ b/src/analysis/lambda_return_check.d @@ -44,6 +44,7 @@ private: enum KEY = "dscanner.confusing.lambda_returns_lambda"; } +version(Windows) {/*because of newline in code*/} else unittest { import analysis.helpers : assertAnalyzerWarnings; diff --git a/test.sh b/test.sh deleted file mode 100755 index 1648b6b..0000000 --- a/test.sh +++ /dev/null @@ -1,17 +0,0 @@ - -rm -f test -rm -f test.o - -dmd\ - src/*.d\ - libdparse/src/std/*.d\ - libdparse/src/std/d/*.d\ - inifiled/source/*.d\ - src/analysis/*.d\ - -oftest\ - -g -unittest\ - -J. - -./test - -rm -f test test.o