tests: add osx test case for PIE builds.

pull/6264/head
Mihai Moldovan 5 years ago committed by Dylan Baker
parent 2c4a08ee56
commit cc803072e0
  1. 5
      test cases/osx/8 pie/main.c
  2. 3
      test cases/osx/8 pie/meson.build

@ -0,0 +1,5 @@
#include <CoreFoundation/CoreFoundation.h>
int main(int argc, char **argv) {
return 0;
}

@ -0,0 +1,3 @@
project('osx pie', 'c')
e = executable('prog', 'main.c', pie : true)
test('pie', e)
Loading…
Cancel
Save