add nextflow d30e48d
This commit is contained in:
20
nextflow/tests/checks/file-with-quote.nf/.checks
Normal file
20
nextflow/tests/checks/file-with-quote.nf/.checks
Normal file
@@ -0,0 +1,20 @@
|
||||
set -e
|
||||
|
||||
#
|
||||
# run normal mode
|
||||
#
|
||||
echo ''
|
||||
$NXF_RUN | tee stdout
|
||||
|
||||
[[ `< .nextflow.log grep -c 'Submitted process > foo'` == 1 ]] || false
|
||||
[[ `< stdout grep -c 'Hello' ` == 1 ]] || false
|
||||
|
||||
|
||||
#
|
||||
# RESUME mode
|
||||
#
|
||||
echo ''
|
||||
$NXF_RUN -resume | tee stdout
|
||||
|
||||
[[ `< .nextflow.log grep -c 'Cached process > foo'` == 1 ]] || false
|
||||
[[ `< stdout grep -c 'Hello' ` == 1 ]] || false
|
||||
Reference in New Issue
Block a user