mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-25 06:40:18 +00:00
174e796c7d
This should fix test failures on macOS.
9 lines
234 B
Plaintext
9 lines
234 B
Plaintext
// RUN: llvm-rc -v -i%p/Inputs -Fo%t.res -- %s
|
|
// RUN: llvm-readobj %t.res | FileCheck %s
|
|
// CHECK: Resource type (int): RCDATA (ID 10)
|
|
// CHECK: Resource name (int): 42
|
|
#include "llvm-rc.h"
|
|
MY_ID RCDATA {
|
|
"a long string of data"
|
|
}
|