Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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