/etc/adios/skel/templates/create_suite.tmpl is in libadios-bin 1.13.0-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/usr/bin/env bash
#for test in $test_plan.get_tests():
<%= '#####Start Test#####' %>
mkdir $test.get_subdir()
pushd $test.get_subdir()
echo "$test.to_yaml()" > test.yaml
skel template -y test.yaml -t ../writer.yaml.in -o writer.yaml
skel replay writer -f -y writer.yaml
popd
<%= '#####End Test#####' %>
#end for
|