Skip to content

Commit 2a5281d

Browse files
committed
[ORC-RT] Fix missing '\' line continuations in objc-imageinfo.S test.
These missing continuations were causing commands in this testcase to fail.
1 parent 0294dab commit 2a5281d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Diff for: compiler-rt/test/orc/TestCases/Darwin/x86-64/objc-imageinfo.S

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
2020
// NEW: MachOPlatform: Registered __objc_imageinfo for main
2121
// NEW-SAME: flags = 0x0040
2222
// RUN: %llvm_jitlink -num-threads=0 -debug-only=orc %t/main.o \
23-
// RUN: %t/swift_4.o 2>&1
23+
// RUN: %t/swift_4.o 2>&1 \
2424
// RUN: | FileCheck %s -check-prefix=SWIFT_4
2525
// SWIFT_4: MachOPlatform: Registered __objc_imageinfo for main
2626
// SWIFT_4-SAME: flags = 0x0640
2727
// RUN: %llvm_jitlink -num-threads=0 -debug-only=orc %t/main.o \
28-
// RUN: %t/swift_5.o 2>&1
28+
// RUN: %t/swift_5.o 2>&1 \
2929
// RUN: | FileCheck %s -check-prefix=SWIFT_5
3030
// SWIFT_5: MachOPlatform: Registered __objc_imageinfo for main
3131
// SWIFT_5-SAME: flags = 0x5000740
3232
// RUN: %llvm_jitlink -num-threads=0 -debug-only=orc %t/main.o \
33-
// RUN: %t/swift_59.o 2>&1
33+
// RUN: %t/swift_59.o 2>&1 \
3434
// RUN: | FileCheck %s -check-prefix=SWIFT_59
3535
// SWIFT_59: MachOPlatform: Registered __objc_imageinfo for main
3636
// SWIFT_59-SAME: flags = 0x5090740
@@ -50,25 +50,25 @@
5050

5151
// Add swift to objc.
5252
// RUN: %llvm_jitlink -num-threads=0 -debug-only=orc %t/main.o %t/swift_59.o \
53-
// RUN: %t/objc_new.o 2>&1
53+
// RUN: %t/objc_new.o 2>&1 \
5454
// RUN: | FileCheck %s -check-prefix=SWIFT_MIX2
5555
// SWIFT_MIX2: MachOPlatform: Merging __objc_imageinfo flags for main {{.*}} -> 0x5090740
5656

5757
// Add multiple swift to objc.
5858
// RUN: %llvm_jitlink -num-threads=0 -debug-only=orc %t/main.o %t/swift_59.o \
59-
// RUN: %t/swift_5.o %t/objc_new.o 2>&1
59+
// RUN: %t/swift_5.o %t/objc_new.o 2>&1 \
6060
// RUN: | FileCheck %s -check-prefix=SWIFT_MIX3
6161
// SWIFT_MIX3: MachOPlatform: Merging __objc_imageinfo flags for main {{.*}} -> 0x5000740
6262

6363
// Disable categories.
64-
// RUN: %llvm_jitlink -num-threads=0 -debug-only=orc %t/main.o %t/objc_old.o
65-
// RUN: %t/objc_new.o 2>&1
64+
// RUN: %llvm_jitlink -num-threads=0 -debug-only=orc %t/main.o %t/objc_old.o \
65+
// RUN: %t/objc_new.o 2>&1 \
6666
// RUN: | FileCheck %s -check-prefix=SWIFT_MIX4
6767
// SWIFT_MIX4: MachOPlatform: Merging __objc_imageinfo flags for main {{.*}} -> 0x0000
6868

6969
// Disable signed class_ro.
70-
// RUN: %llvm_jitlink -num-threads=0 -debug-only=orc %t/main.o %t/objc_new.o
71-
// RUN: %t/objc_new_signed_ro.o 2>&1
70+
// RUN: %llvm_jitlink -num-threads=0 -debug-only=orc %t/main.o %t/objc_new.o \
71+
// RUN: %t/objc_new_signed_ro.o 2>&1 \
7272
// RUN: | FileCheck %s -check-prefix=SWIFT_MIX5
7373
// SWIFT_MIX5: MachOPlatform: Merging __objc_imageinfo flags for main {{.*}} -> 0x0040
7474

0 commit comments

Comments
 (0)