summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2008-11-25 21:38:12 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2008-11-25 21:38:12 +0000
commit113ec35f7f69bd66c0fbab7b42e2b9d59eddb946 (patch)
tree3b134d1c1e4f3a77e35efe15051cb40295f4e801 /test
parentd91487785f641af7f5c6c32b04cb28cfe94518a9 (diff)
downloadllvm-113ec35f7f69bd66c0fbab7b42e2b9d59eddb946.tar.gz
llvm-113ec35f7f69bd66c0fbab7b42e2b9d59eddb946.tar.bz2
llvm-113ec35f7f69bd66c0fbab7b42e2b9d59eddb946.tar.xz
Since the old llvmc was removed, rename llvmc2 to llvmc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60048 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/LLVMC/emit-llvm.c2
-rw-r--r--test/LLVMC/false.c2
-rw-r--r--test/LLVMC/hello.c2
-rw-r--r--test/LLVMC/hello.cpp2
-rw-r--r--test/LLVMC/hello.m2
-rw-r--r--test/LLVMC/hello.mm2
-rw-r--r--test/LLVMC/include.c2
-rw-r--r--test/LLVMC/opt-test.c2
-rw-r--r--test/LLVMC/sink.c2
-rw-r--r--test/LLVMC/together.cpp2
-rw-r--r--test/LLVMC/wall.c2
11 files changed, 11 insertions, 11 deletions
diff --git a/test/LLVMC/emit-llvm.c b/test/LLVMC/emit-llvm.c
index 5a6aa0f538..38bbba6f0a 100644
--- a/test/LLVMC/emit-llvm.c
+++ b/test/LLVMC/emit-llvm.c
@@ -1,4 +1,4 @@
-// RUN: llvmc2 -c -emit-llvm -o - %s | llvm-dis | grep "@f0()" | count 1
+// RUN: llvmc -c -emit-llvm -o - %s | llvm-dis | grep "@f0()" | count 1
int f0(void) {
}
diff --git a/test/LLVMC/false.c b/test/LLVMC/false.c
index 4aa365d89a..eb2883d699 100644
--- a/test/LLVMC/false.c
+++ b/test/LLVMC/false.c
@@ -1,5 +1,5 @@
// Test that we can compile .c files as C++ and vice versa
-// RUN: llvmc2 -x c++ %s -x c %p/test_data/false.cpp -x lisp -x whatnot -x none %p/test_data/false2.cpp -o %t
+// RUN: llvmc -x c++ %s -x c %p/test_data/false.cpp -x lisp -x whatnot -x none %p/test_data/false2.cpp -o %t
// RUN: ./%t | grep hello
#include <iostream>
diff --git a/test/LLVMC/hello.c b/test/LLVMC/hello.c
index bf917bcdea..1cda9c3a34 100644
--- a/test/LLVMC/hello.c
+++ b/test/LLVMC/hello.c
@@ -1,6 +1,6 @@
/*
* Check that we can compile helloworld
- * RUN: llvmc2 %s -o %t
+ * RUN: llvmc %s -o %t
* RUN: ./%t | grep hello
*/
diff --git a/test/LLVMC/hello.cpp b/test/LLVMC/hello.cpp
index a3148c3c16..27c89d66fa 100644
--- a/test/LLVMC/hello.cpp
+++ b/test/LLVMC/hello.cpp
@@ -1,5 +1,5 @@
// Test that we can compile C++ code.
-// RUN: llvmc2 %s -o %t
+// RUN: llvmc %s -o %t
// RUN: ./%t | grep hello
#include <iostream>
diff --git a/test/LLVMC/hello.m b/test/LLVMC/hello.m
index bf917bcdea..1cda9c3a34 100644
--- a/test/LLVMC/hello.m
+++ b/test/LLVMC/hello.m
@@ -1,6 +1,6 @@
/*
* Check that we can compile helloworld
- * RUN: llvmc2 %s -o %t
+ * RUN: llvmc %s -o %t
* RUN: ./%t | grep hello
*/
diff --git a/test/LLVMC/hello.mm b/test/LLVMC/hello.mm
index 5f14a94ccc..ff82e4af51 100644
--- a/test/LLVMC/hello.mm
+++ b/test/LLVMC/hello.mm
@@ -1,5 +1,5 @@
// Test that we can compile Objective-C++ code.
-// RUN: llvmc2 %s -o %t
+// RUN: llvmc %s -o %t
// RUN: ./%t | grep hello
#include <iostream>
diff --git a/test/LLVMC/include.c b/test/LLVMC/include.c
index eeb6ca6926..07ae761d2c 100644
--- a/test/LLVMC/include.c
+++ b/test/LLVMC/include.c
@@ -1,7 +1,7 @@
/*
* Check that the 'include' options work.
* RUN: echo "int x;\n" > %t1.inc
- * RUN: llvmc2 -include %t1.inc -fsyntax-only %s
+ * RUN: llvmc -include %t1.inc -fsyntax-only %s
*/
int f0(void) {
diff --git a/test/LLVMC/opt-test.c b/test/LLVMC/opt-test.c
index 25ca66a5c6..ed2df52fed 100644
--- a/test/LLVMC/opt-test.c
+++ b/test/LLVMC/opt-test.c
@@ -1,6 +1,6 @@
/*
* Check that the -opt switch works.
- * RUN: llvmc2 %s -opt -o %t
+ * RUN: llvmc %s -opt -o %t
* RUN: ./%t | grep hello
*/
diff --git a/test/LLVMC/sink.c b/test/LLVMC/sink.c
index d1dde41bb3..3edbf78112 100644
--- a/test/LLVMC/sink.c
+++ b/test/LLVMC/sink.c
@@ -1,6 +1,6 @@
/*
* Check that the 'sink' options work.
- * RUN: llvmc2 -v -Wall %s -o %t |& grep "Wall"
+ * RUN: llvmc -v -Wall %s -o %t |& grep "Wall"
* RUN: ./%t | grep hello
*/
diff --git a/test/LLVMC/together.cpp b/test/LLVMC/together.cpp
index 09f8d86379..b07250e9d0 100644
--- a/test/LLVMC/together.cpp
+++ b/test/LLVMC/together.cpp
@@ -1,5 +1,5 @@
// Check that we can compile files of different types together.
-// RUN: llvmc2 %s %p/test_data/together.c -o %t
+// RUN: llvmc %s %p/test_data/together.c -o %t
// RUN: ./%t | grep hello
extern "C" void test();
diff --git a/test/LLVMC/wall.c b/test/LLVMC/wall.c
index 9af9bfba31..2c72ea6992 100644
--- a/test/LLVMC/wall.c
+++ b/test/LLVMC/wall.c
@@ -1,6 +1,6 @@
/*
* Check that -Wall works as intended
- * RUN: llvmc2 -Wall %s -o %t
+ * RUN: llvmc -Wall %s -o %t
* RUN: ./%t | grep hello
*/