Files
ma/nextflow/tests-v1/checks/nativeCode.nf/.checks
2026-04-29 23:01:54 +02:00

21 lines
351 B
Plaintext

set -e
#
# run normal mode
#
echo ''
$NXF_RUN | tee stdout
[[ `grep 'INFO' .nextflow.log | grep -c 'Submitted process > nativeCode'` == 1 ]] || false
grep 'Hello world' stdout
#
# RESUME mode
#
echo ''
$NXF_RUN -resume | tee stdout
[[ `grep 'INFO' .nextflow.log | grep -c 'Cached process > nativeCode'` == 1 ]] || false
grep 'Hello world' stdout