forked from OSchip/llvm-project
[asan] Fix asan_options-include test.
Wrong include order. llvm-svn: 226268
This commit is contained in:
parent
29235e374c
commit
82d3ef1617
|
@ -1,8 +1,8 @@
|
|||
// RUN: %clangxx_asan -O0 %s -o %t
|
||||
// RUN: echo "symbolize=1\ninclude='%t.options2.txt'" > %t.options1.txt
|
||||
// RUN: echo "verbosity=1" > %t.options2.txt
|
||||
// RUN: ASAN_OPTIONS="verbosity=0:include='%t.options2.txt'" %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-VERBOSITY1
|
||||
// RUN: ASAN_OPTIONS="include='%t.options2.txt',verbosity=0" %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-VERBOSITY0
|
||||
// RUN: echo -e "symbolize=1\ninclude='%t.options2.txt'" >%t.options1.txt
|
||||
// RUN: echo -e "verbosity=1\n" >%t.options2.txt
|
||||
// RUN: ASAN_OPTIONS="verbosity=0:include='%t.options1.txt'" %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-VERBOSITY1
|
||||
// RUN: ASAN_OPTIONS="include='%t.options1.txt',verbosity=0" %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-VERBOSITY0
|
||||
// RUN: ASAN_OPTIONS="include='%t.options-not-found.txt',verbosity=0" not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-NOT-FOUND
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
Loading…
Reference in New Issue