comparison test/makepkg.sh @ 0:3e629dc19168

initial from svn dyncall-1745
author Daniel Adler
date Thu, 19 Mar 2015 22:24:28 +0100
parents
children 917d5d213815
comparison
equal deleted inserted replaced
-1:000000000000 0:3e629dc19168
1 #!/bin/sh
2 # script to package some tests for quick deployment (useful for embedded stuff)
3
4 TOP=..
5 . $TOP/ConfigVars
6
7 TESTS="callf ellipsis malloc_wx plain plain_c++ suite suite2 suite3 suite_floats callback_plain callback_suite"
8 # addition test:
9 #
10 # callback_plain callback_suite callf
11 # ellipsis
12 # malloc_wx thunk
13 # nm
14 # plain suite suite2 suite3
15 # suite2_x86win32fast suite2_x86win32std suite_x86win32fast suite_x86win32std
16
17 TARGET="${CONFIG_OS}_${CONFIG_ARCH}_${CONFIG_TOOL}_${CONFIG_CONFIG}"
18 BUILD_DIR=build_out
19
20 mkdir -p pack_out/testpkg
21 for I in $TESTS ; do
22 cp $I/$BUILD_DIR/$TARGET/$I pack_out/testpkg
23 done
24 tar -cvzf test-pack.tar.gz -C pack_out testpkg