8 lines
320 B
Plaintext
8 lines
320 B
Plaintext
RUN: %cpp_compiler %S/DSO1.cpp -fPIC -shared -o %t-DSO1.so
|
|
RUN: %cpp_compiler %S/DSO2.cpp -fPIC -shared -o %t-DSO2.so
|
|
RUN: %cpp_compiler %S/DSOTestMain.cpp %S/DSOTestExtra.cpp -L. %t-DSO1.so %t-DSO2.so -o %t-DSOTest
|
|
|
|
RUN: not %run %t-DSOTest 2>&1 | FileCheck %s --check-prefix=DSO
|
|
DSO: INFO: Loaded 3 modules
|
|
DSO: BINGO
|