Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/kokoro
diff options
context:
space:
mode:
authorVasyl Teliman <vasniktel@gmail.com>2020-07-31 15:53:41 +0300
committerGitHub <noreply@github.com>2020-07-31 15:53:41 +0300
commit91cea06ab4d55aa051537a55d3c92cb7dd3a454b (patch)
tree83f8b9f1b2e37f143660af07ed2e30bf56ef696b /kokoro
parent2aaa8653da4f5d713bcb9708297fdb3ac25191a7 (diff)
Fix typo in ASAN CI build (#3623)
Diffstat (limited to 'kokoro')
-rw-r--r--kokoro/scripts/linux/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/kokoro/scripts/linux/build.sh b/kokoro/scripts/linux/build.sh
index 8fb7bddde..3a876467e 100644
--- a/kokoro/scripts/linux/build.sh
+++ b/kokoro/scripts/linux/build.sh
@@ -46,7 +46,7 @@ fi
ADDITIONAL_CMAKE_FLAGS=""
if [ $CONFIG = "ASAN" ]
then
- ADDITIONAL_CMAKE_FLAGS="SPIRV_USE_SANITIZER=address,bounds,null"
+ ADDITIONAL_CMAKE_FLAGS="-DSPIRV_USE_SANITIZER=address,bounds,null"
[ $COMPILER = "clang" ] || { echo "$CONFIG requires clang"; exit 1; }
elif [ $CONFIG = "COVERAGE" ]
then