mirror of
https://github.com/zeek/zeek.git
synced 2025-10-01 22:28:20 +00:00

TSAN may re-execute the executable when the memory layout doesn't fullfill requirements, causing argument confusion when that happens. Closes #3774.
7 lines
112 B
Bash
Executable file
7 lines
112 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if grep -q "ZEEK_SANITIZERS:STRING=.*thread.*" "${BUILD}"/CMakeCache.txt; then
|
|
exit 0
|
|
fi
|
|
|
|
exit 1
|