Skip to content

Commit

Permalink
Merge pull request diffblue#1378 from thk123/bugfix/fix-symex-appveyor
Browse files Browse the repository at this point in the history
Bugfix/fix symex appveyor
  • Loading branch information
peterschrammel authored Sep 13, 2017
2 parents 41bafc0 + 91e733d commit d45325c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
6 changes: 5 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ build_script:
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x64
sed -i "s/BUILD_ENV[ ]*=.*/BUILD_ENV = MSVC/" src/config.inc
make -C src -j2
make -C src symex.dir -j2
test_script:
- cmd: |
Expand Down Expand Up @@ -112,6 +111,11 @@ test_script:
rmdir /s /q cbmc-java\tableswitch2
rmdir /s /q goto-gcc
rmdir /s /q goto-instrument\slice08
rmdir /s /q symex\va_args_10
rmdir /s /q symex\va_args_2
rmdir /s /q symex\va_args_3
rmdir /s /q symex\va_args_5
rmdir /s /q symex\va_args_6
make test
Expand Down
1 change: 1 addition & 0 deletions regression/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ DIRS = ansi-c \
invariants \
strings \
strings-smoke-tests \
symex \
test-script \
# Empty last line

Expand Down
10 changes: 8 additions & 2 deletions regression/symex/Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
default: tests.log

test:
@../test.pl -c ../../../src/symex/symex
@if ! ../test.pl -c ../../../src/symex/symex ; then \
../failed-tests-printer.pl ; \
exit 1 ; \
fi

tests.log: ../test.pl
@../test.pl -c ../../../src/symex/symex
@if ! ../test.pl -c ../../../src/symex/symex ; then \
../failed-tests-printer.pl ; \
exit 1 ; \
fi

show:
@for dir in *; do \
Expand Down

0 comments on commit d45325c

Please sign in to comment.