Skip to content

Commit a4a4006

Browse files
committed
Migrate FileCheck to FileCheck %s in tests, extra fixes for the swift-3.0-branch
1 parent fdda3e5 commit a4a4006

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

test/1_stdlib/BitwiseOperationsType.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-run-simple-swift | FileCheck %s
1+
// RUN: %target-run-simple-swift | %FileCheck %s
22
// REQUIRES: executable_test
33
struct MyInt32 : BitwiseOperations {
44
var underlying: Int32

test/1_stdlib/Float.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
// RUN: echo "typealias TestFloat = Float" > %t/float_type.swift
55
// RUN: %target-build-swift %t/main.swift %t/float_type.swift -o %t/float.out
6-
// RUN: %target-run %t/float.out | FileCheck %s
6+
// RUN: %target-run %t/float.out | %FileCheck %s
77

88
// RUN: echo "typealias TestFloat = Double" > %t/double_type.swift
99
// RUN: %target-build-swift %t/main.swift %t/double_type.swift -o %t/double.out
10-
// RUN: %target-run %t/double.out | FileCheck %s
10+
// RUN: %target-run %t/double.out | %FileCheck %s
1111
// REQUIRES: executable_test
1212

1313
//===---

test/1_stdlib/Zip.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-run-simple-swift | FileCheck %s
1+
// RUN: %target-run-simple-swift | %FileCheck %s
22
// REQUIRES: executable_test
33

44
// FIXME(prext): remove this file when protocol extensions land.

test/DebugInfo/trap-optimized.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-swift-frontend -O -primary-file %s -emit-ir -g -o - | FileCheck %s
1+
// RUN: %target-swift-frontend -O -primary-file %s -emit-ir -g -o - | %FileCheck %s
22
import StdlibUnittest
33
// CHECK-LABEL: define{{.*}}2fn
44
public var i : UInt32 = 1

0 commit comments

Comments
 (0)