Skip to content

Commit d45325c

Browse files
Merge pull request #1378 from thk123/bugfix/fix-symex-appveyor
Bugfix/fix symex appveyor
2 parents 41bafc0 + 91e733d commit d45325c

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

appveyor.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ build_script:
5656
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x64
5757
sed -i "s/BUILD_ENV[ ]*=.*/BUILD_ENV = MSVC/" src/config.inc
5858
make -C src -j2
59-
make -C src symex.dir -j2
6059
6160
test_script:
6261
- cmd: |
@@ -112,6 +111,11 @@ test_script:
112111
rmdir /s /q cbmc-java\tableswitch2
113112
rmdir /s /q goto-gcc
114113
rmdir /s /q goto-instrument\slice08
114+
rmdir /s /q symex\va_args_10
115+
rmdir /s /q symex\va_args_2
116+
rmdir /s /q symex\va_args_3
117+
rmdir /s /q symex\va_args_5
118+
rmdir /s /q symex\va_args_6
115119
116120
make test
117121

regression/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ DIRS = ansi-c \
1212
invariants \
1313
strings \
1414
strings-smoke-tests \
15+
symex \
1516
test-script \
1617
# Empty last line
1718

regression/symex/Makefile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
default: tests.log
22

33
test:
4-
@../test.pl -c ../../../src/symex/symex
4+
@if ! ../test.pl -c ../../../src/symex/symex ; then \
5+
../failed-tests-printer.pl ; \
6+
exit 1 ; \
7+
fi
58

69
tests.log: ../test.pl
7-
@../test.pl -c ../../../src/symex/symex
10+
@if ! ../test.pl -c ../../../src/symex/symex ; then \
11+
../failed-tests-printer.pl ; \
12+
exit 1 ; \
13+
fi
814

915
show:
1016
@for dir in *; do \

0 commit comments

Comments
 (0)