view test/makepkg.sh @ 551:eef302b7a58d

- amendment fix for buffer overflow (see commit 0455834d29a1), to also handle non-standard struct packing, + better asserts - changelog wording tweaks for clarity - comment tweaks for clarity - (mostly pointless) microoptimization in aggr alignment calculation, avoiding a modulo, as alignment always a power of 2 - cleanups
author Tassilo Philipp
date Mon, 20 Jun 2022 14:57:49 +0200
parents 917d5d213815
children
line wrap: on
line source

#!/bin/sh
# script to package some tests for quick deployment (useful for embedded stuff)

TOP=..
. $TOP/ConfigVars

TESTS="callf ellipsis malloc_wx plain plain_c++ suite suite2 suite3 suite_floats callback_plain callback_plain_c++ callback_suite"
# addition test:
#
# callback_plain callback_suite callf
# ellipsis
# malloc_wx thunk
# nm
# plain suite suite2 suite3
# suite2_x86win32fast suite2_x86win32std suite_x86win32fast suite_x86win32std

TARGET="${CONFIG_OS}_${CONFIG_ARCH}_${CONFIG_TOOL}_${CONFIG_CONFIG}"
BUILD_DIR=build_out

mkdir -p pack_out/testpkg
for I in $TESTS ; do
cp $I/$BUILD_DIR/$TARGET/$I pack_out/testpkg
done
tar -cvzf test-pack.tar.gz -C pack_out testpkg