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 6 7RUN: rm -rf %t.dir 8RUN: mkdir %t.dir 9RUN: cp %S/Inputs/id.res %t.dir/id1.res 10RUN: cp %S/Inputs/id.res %t.dir/id2.res 11RUN: not llvm-cvtres /machine:X86 %t.dir/id1.res %t.dir/id2.res 2>&1 | \ 12RUN: FileCheck -check-prefix=ID %s 13ID: duplicate resource: type STRINGTABLE (ID 6)/name ID 3/language 1033, in {{.*}}id1.res and in {{.*}}id2.res 14 15RUN: cp %S/Inputs/name.res %t.dir/name1.res 16RUN: cp %S/Inputs/name.res %t.dir/name2.res 17RUN: not llvm-cvtres /machine:X86 %t.dir/name1.res %t.dir/name2.res 2>&1 | \ 18RUN: FileCheck -check-prefix=NAME %s 19NAME: duplicate resource: type "TYPEFOO"/name "NAMEBAR"/language 1033, in {{.*}}name1.res and in {{.*}}name2.res 20