1 // Check that cvtres rejects duplicate resources.
2 // The input was generated with the following command, using the original Windows
4 // > rc /fo id.res /nologo id.rc
5 // > rc /fo name.res /nologo name.rc
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