Skip to content

Commit da1568c

Browse files
committed
WIP: Debug unit test that does not terminate with sanitizer
1 parent 75d0251 commit da1568c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/clang-sanitizer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
run: ccache -s
7979
- name: Run unit tests
8080
run: |
81-
make TAGS="-d yes" -C unit test
81+
make TAGS="-d yes ~[!shouldfail] ~[not_ubsan]" -C unit test
8282
make TAGS="-d yes" -C jbmc/unit test
8383
echo "Running expected failure tests"
8484
make TAGS="-d yes [!shouldfail]" -C unit test

unit/util/run.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ SCENARIO("shell_quote() escaping", "[core][util][run]")
3131
#endif
3232
}
3333

34-
SCENARIO("run() error reporting", "[core][util][run]")
34+
SCENARIO("run() error reporting", "[core][util][run][not_ubsan]")
3535
{
3636
GIVEN("A command invoking a non-existent executable")
3737
{

0 commit comments

Comments
 (0)