[compiler-rt] r301451 - Fix the typo in strtok.c testcase: There was a missing space in %run expansion.
Kuba Mracek via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 26 13:02:14 PDT 2017
Author: kuba.brecka
Date: Wed Apr 26 15:02:14 2017
New Revision: 301451
URL: http://llvm.org/viewvc/llvm-project?rev=301451&view=rev
Log:
Fix the typo in strtok.c testcase: There was a missing space in %run expansion.
Modified:
compiler-rt/trunk/test/asan/TestCases/strtok.c
Modified: compiler-rt/trunk/test/asan/TestCases/strtok.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/strtok.c?rev=301451&r1=301450&r2=301451&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/strtok.c (original)
+++ compiler-rt/trunk/test/asan/TestCases/strtok.c Wed Apr 26 15:02:14 2017
@@ -4,7 +4,7 @@
// RUN: %env_asan_opts=strict_string_checks=true not %run %t test1 2>&1 | \
// RUN: FileCheck %s --check-prefix=CHECK1
-// RUN: %env_asan_opts=intercept_strtok=false%run %t test1 2>&1
+// RUN: %env_asan_opts=intercept_strtok=false %run %t test1 2>&1
// RUN: %env_asan_opts=strict_string_checks=true not %run %t test2 2>&1 | \
// RUN: FileCheck %s --check-prefix=CHECK2
// RUN: %env_asan_opts=intercept_strtok=false %run %t test2 2>&1
More information about the llvm-commits
mailing list