add nextflow d30e48d
This commit is contained in:
20
nextflow/tests-v1/checks/nativeCode.nf/.checks
Normal file
20
nextflow/tests-v1/checks/nativeCode.nf/.checks
Normal file
@@ -0,0 +1,20 @@
|
||||
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
|
||||
Reference in New Issue
Block a user