Skip to content

Commit b735c44

Browse files
authored
Merge pull request #1278 from diffblue/debug-KNOWNBUG
Fix running KNOWNBUG tests
2 parents 43d3a48 + 492bb38 commit b735c44

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,13 @@ jobs:
502502
chmod a+x ./bin/ebmc ; ./bin/ebmc --version
503503
chmod a+x ./bin/hw-cbmc ; ./bin/hw-cbmc --version
504504
chmod a+x ./bin/vlindex ; ./bin/vlindex --version
505-
echo "PATH=$PATH:$PWD/bin" >> $GITHUB_ENV
505+
- name: Put binaries back in place
506+
run: |
507+
cp bin/ebmc src/ebmc/
508+
cp bin/hw-cbmc src/hw-cbmc/
509+
cp bin/vlindex src/vlindex/
510+
- name: Run the verilog tests (CORE)
511+
run: make -C regression/verilog test TEST_PL="../../lib/cbmc/regression/test.pl -C"
506512
- name: Run the ebmc tests with SAT
507513
run: make -C regression/ebmc test TEST_PL="../../lib/cbmc/regression/test.pl -K"
508514
- name: Run the ebmc tests with Z3
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
KNOWNBUG
1+
CORE
22
input_and_ansi_input.v
33

44
^EXIT=2$
55
^SIGNAL=0$
66
--
77
--
8-
The redeclaration must be errored.

0 commit comments

Comments
 (0)