[ARM] Rewrite how VCMP are lowered, using a single node
[llvm-core.git] / test / tools / llvm-cvtres / duplicate.test
blobbf3d2e25b8709a73a215f78e9db661a2dd72848d
1 // Check that cvtres rejects duplicate resources.
2 // The input was generated with the following command, using the original Windows
3 // rc.exe:
4 // > rc /fo id.res /nologo id.rc
5 // > rc /fo name.res /nologo name.rc
7 RUN: rm -rf %t.dir
8 RUN: mkdir %t.dir
9 RUN: cp %S/Inputs/id.res %t.dir/id1.res
10 RUN: cp %S/Inputs/id.res %t.dir/id2.res
11 RUN: not llvm-cvtres /machine:X86 %t.dir/id1.res %t.dir/id2.res 2>&1 | \
12 RUN:     FileCheck -check-prefix=ID %s
13 ID: duplicate resource: type STRINGTABLE (ID 6)/name ID 3/language 1033, in {{.*}}id1.res and in {{.*}}id2.res
15 RUN: cp %S/Inputs/name.res %t.dir/name1.res
16 RUN: cp %S/Inputs/name.res %t.dir/name2.res
17 RUN: not llvm-cvtres /machine:X86 %t.dir/name1.res %t.dir/name2.res 2>&1 | \
18 RUN:     FileCheck -check-prefix=NAME %s
19 NAME: duplicate resource: type "TYPEFOO"/name "NAMEBAR"/language 1033, in {{.*}}name1.res and in {{.*}}name2.res