diff options
author | Simon Atanasyan <simon@atanasyan.com> | 2014-06-30 08:09:54 +0000 |
---|---|---|
committer | Simon Atanasyan <simon@atanasyan.com> | 2014-06-30 08:09:54 +0000 |
commit | 08c165ba374f556a0a8ed3e5d0d8ec6a1b693ad0 (patch) | |
tree | dc91036b088888bfb74174a9e9c0109d149223ce /clang/test/Driver/mips-abi.c | |
parent | d4421d2f4734c1988a29fdd3fdd94ab842004fd8 (diff) | |
download | bcm5719-llvm-08c165ba374f556a0a8ed3e5d0d8ec6a1b693ad0.tar.gz bcm5719-llvm-08c165ba374f556a0a8ed3e5d0d8ec6a1b693ad0.zip |
[Driver][Mips] Check rejecting of invalid MIPS ABI names in the test.
No functional changes.
llvm-svn: 212022
Diffstat (limited to 'clang/test/Driver/mips-abi.c')
-rw-r--r-- | clang/test/Driver/mips-abi.c | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/clang/test/Driver/mips-abi.c b/clang/test/Driver/mips-abi.c index fd2b46f41be..ac86abe6c12 100644 --- a/clang/test/Driver/mips-abi.c +++ b/clang/test/Driver/mips-abi.c @@ -3,34 +3,45 @@ // RUN: %clang -target mips-linux-gnu -### -c %s \ // RUN: -mabi=32 2>&1 \ // RUN: | FileCheck -check-prefix=MIPS-ABI-32 %s +// MIPS-ABI-32: "-target-cpu" "mips32r2" // MIPS-ABI-32: "-target-abi" "o32" // // RUN: %clang -target mips-linux-gnu -### -c %s \ // RUN: -mabi=o32 2>&1 \ // RUN: | FileCheck -check-prefix=MIPS-ABI-O32 %s +// MIPS-ABI-O32: "-target-cpu" "mips32r2" // MIPS-ABI-O32: "-target-abi" "o32" // // RUN: %clang -target mips-linux-gnu -### -c %s \ // RUN: -mabi=n32 2>&1 \ // RUN: | FileCheck -check-prefix=MIPS-ABI-N32 %s +// MIPS-ABI-N32: "-target-cpu" "mips64r2" // MIPS-ABI-N32: "-target-abi" "n32" // // RUN: %clang -target mips64-linux-gnu -### -c %s \ // RUN: -mabi=64 2>&1 \ // RUN: | FileCheck -check-prefix=MIPS-ABI-64 %s +// MIPS-ABI-64: "-target-cpu" "mips64r2" // MIPS-ABI-64: "-target-abi" "n64" // // RUN: %clang -target mips64-linux-gnu -### -c %s \ // RUN: -mabi=n64 2>&1 \ // RUN: | FileCheck -check-prefix=MIPS-ABI-N64 %s +// MIPS-ABI-N64: "-target-cpu" "mips64r2" // MIPS-ABI-N64: "-target-abi" "n64" // -// RUN: %clang -target mips64-linux-gnu -### -c %s \ +// RUN: not %clang -target mips64-linux-gnu -c %s \ // RUN: -mabi=o64 2>&1 \ // RUN: | FileCheck -check-prefix=MIPS-ABI-O64 %s -// MIPS-ABI-O64: "-target-abi" "o64" +// MIPS-ABI-O64: error: unknown target ABI 'o64' // // RUN: %clang -target mips-linux-gnu -### -c %s \ // RUN: -mabi=eabi 2>&1 \ // RUN: | FileCheck -check-prefix=MIPS-ABI-EABI %s +// MIPS-ABI-EABI: "-target-cpu" "mips32r2" // MIPS-ABI-EABI: "-target-abi" "eabi" +// +// RUN: not %clang -target mips-linux-gnu -c %s \ +// RUN: -mabi=unknown 2>&1 \ +// RUN: | FileCheck -check-prefix=MIPS-ABI-UNKNOWN %s +// MIPS-ABI-UNKNOWN: error: unknown target ABI 'unknown' |