[clang][IFS][test] Fixing lit test breakages on macOS due to r374798

Adding the quotes breaks tests because on Darwin the name mangling is prefixed
with an underscore.

llvm-svn: 374805
This commit is contained in:
Puyan Lotfi 2019-10-14 18:57:29 +00:00
parent d5768e3d0e
commit 4e4b4f4099
2 changed files with 3 additions and 3 deletions

View File

@ -56,8 +56,8 @@ INLINE int foo() {
// RUN: -c -std=gnu89 -xc %s | llvm-nm - 2>&1 | \
// RUN: FileCheck -check-prefix=CHECK-SYMBOLS %s
// CHECK-TAPI-DAG: "foo" : { Type: Func }
// CHECK-TAPI-DAG: "foo.var" : { Type: Object, Size: 4 }
// CHECK-TAPI-DAG: foo" : { Type: Func }
// CHECK-TAPI-DAG: foo.var" : { Type: Object, Size: 4 }
// CHECK-SYMBOLS-DAG: foo
// CHECK-SYMBOLS-DAG: foo.var
#include "inline.h"

View File

@ -2,6 +2,6 @@
// RUN: %clang -fvisibility=default -c -o - -emit-interface-stubs %s | FileCheck -check-prefix=CHECK-SYMBOLS %s
// RUN: %clang -fvisibility=default -c -o - %s | llvm-nm - 2>&1 | FileCheck -check-prefix=CHECK-SYMBOLS %s
// CHECK-TAPI: "data" : { Type: Object, Size: 4 }
// CHECK-TAPI: data" : { Type: Object, Size: 4 }
// CHECK-SYMBOLS: data
int data = 42;