aboutsummaryrefslogtreecommitdiff
path: root/src/cpt-lib
diff options
context:
space:
mode:
authormerakor <cem@ckyln.com>2020-09-04 10:30:13 +0000
committermerakor <cem@ckyln.com>2020-09-04 10:30:13 +0000
commit16d4fd6cbf7835583d46960f96d30b35107e9c74 (patch)
treebb66f858b0524917c29721c9fd27ca3d9d252455 /src/cpt-lib
parentb24b207ae08088459b8276856b927f9fec5996db (diff)
downloadcpt-16d4fd6cbf7835583d46960f96d30b35107e9c74.tar.gz
cpt: add support for package tests
FossilOrigin-Name: f257d102fe4e20da0965fd247df1c229c4fae24d5e5059704f3886ff26181247
Diffstat (limited to 'src/cpt-lib')
-rw-r--r--src/cpt-lib20
1 files changed, 18 insertions, 2 deletions
diff --git a/src/cpt-lib b/src/cpt-lib
index 0460fcb..6957841 100644
--- a/src/cpt-lib
+++ b/src/cpt-lib
@@ -677,8 +677,11 @@ pkg_depends() {
[ "$pkg_build" ] && [ -z "$2" ] &&
(pkg_list "$1" >/dev/null) && return
- # Recurse through the dependencies of the child packages.
- while read -r dep _ || [ "$dep" ]; do
+ while read -r dep type || [ "$dep" ]; do
+ # Skip test dependencies unless $CPT_TEST is set to 1.
+ case $type in test) [ "$CPT_TEST" = 1 ] || continue; esac
+
+ # Recurse through the dependencies of the child packages.
[ "${dep##\#*}" ] && pkg_depends "$dep"
done 2>/dev/null < "$(pkg_find "$1")/depends" ||:
@@ -964,6 +967,19 @@ pkg_build() {
kill 0
} } | tee "$log_dir/$pkg-$time-$pid"
+ # Run the test script if it exists and the user wants to run tests. This
+ # is turned off by default.
+ [ -x "$repo_dir/test" ] && [ "$CPT_TEST" = 1 ] && {
+ run_hook pre-test "$pkg" "$pkg_dir/$pkg"
+ log "$pkg" "Running tests"
+ "$repo_dir/test" "$pkg_dir/$pkg" "$build_version" "$sys_arch" 2>&1 || {
+ log "$pkg" "Test failed"
+ log "$pkg" "Log stored to $log_dir/$pkg-$time-$pid"
+ run_hook test-fail "$pkg" "$pkg_dir/$pkg"
+ pkg_clean
+ kill 0
+ } } | tee -a "$log_dir/$pkg-$time-$pid"
+
# Delete the log file if the build succeeded to prevent
# the directory from filling very quickly with useless logs.
[ "$CPT_KEEPLOG" = 1 ] || rm -f "$log_dir/$pkg-$time-$pid"