Simple test for OSX.

pull/15/head
Jussi Pakkanen 12 years ago
parent 9262fe600a
commit 4dda53483e
  1. 4
      run_tests.py
  2. 5
      test cases/osx/1 basic/main.c
  3. 3
      test cases/osx/1 basic/meson.build

@ -81,9 +81,9 @@ def run_tests():
os.mkdir(install_dir)
except OSError:
pass
print('Running common tests.')
print('\nRunning common tests.\n')
[run_test(t) for t in commontests]
print('Running platform dependent tetss')
print('\nRunning platform dependent tests.\n')
[run_test(t) for t in platformtests]
if __name__ == '__main__':

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

@ -0,0 +1,3 @@
project('osx fundamentals', 'c')
e = executable('prog', 'main.c')
add_test('basic', e)
Loading…
Cancel
Save