You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.6 KiB
30 lines
1.6 KiB
// Check that lld-link rejects duplicate resources, unless
|
|
// /force or /force:multipleres is passed.
|
|
// The input was generated with the following command, using the original Windows
|
|
// rc.exe:
|
|
// > rc /fo id.res /nologo id.rc
|
|
// > rc /fo name.res /nologo name.rc
|
|
|
|
RUN: rm -rf %t.dir
|
|
RUN: mkdir %t.dir
|
|
RUN: cp %S/Inputs/id.res %t.dir/id1.res
|
|
RUN: cp %S/Inputs/id.res %t.dir/id2.res
|
|
RUN: cp %S/Inputs/id.res.o %t.dir/id1.o
|
|
RUN: cp %S/Inputs/id.res.o %t.dir/id2.o
|
|
|
|
RUN: not lld-link /machine:x64 /nodefaultlib /noentry /dll %t.dir/id1.res %t.dir/id2.res 2>&1 | \
|
|
RUN: FileCheck -check-prefix=ERR %s
|
|
RUN: not lld-link /lldmingw /machine:x64 /nodefaultlib /noentry /dll %t.dir/id1.res %t.dir/id2.o 2>&1 | \
|
|
RUN: FileCheck -check-prefix=ERR %s
|
|
RUN: not lld-link /lldmingw /machine:x64 /nodefaultlib /noentry /dll %t.dir/id1.o %t.dir/id2.o 2>&1 | \
|
|
RUN: FileCheck -check-prefix=ERR %s
|
|
ERR: error: duplicate resource: type STRINGTABLE (ID 6)/name ID 3/language 1033, in {{.*}}id1.{{res|o}} and in {{.*}}id2.{{res|o}}
|
|
|
|
RUN: lld-link /force /machine:x64 /nodefaultlib /noentry /dll %t.dir/id1.res %t.dir/id2.res 2>&1 | \
|
|
RUN: FileCheck -check-prefix=WARN %s
|
|
RUN: lld-link /force:multipleres /machine:x64 /nodefaultlib /noentry /dll %t.dir/id1.res %t.dir/id2.res 2>&1 | \
|
|
RUN: FileCheck -check-prefix=WARN %s
|
|
RUN: lld-link /lldmingw /force:multipleres /machine:x64 /nodefaultlib /noentry /dll %t.dir/id1.o %t.dir/id2.o 2>&1 | \
|
|
RUN: FileCheck -check-prefix=WARN %s
|
|
WARN: warning: duplicate resource: type STRINGTABLE (ID 6)/name ID 3/language 1033, in {{.*}}id1.{{res|o}} and in {{.*}}id2.{{res|o}}
|