5626056ffb
to avoid accidents when debugging with 'sh -x'. * grub-core/gensyminfo.sh.in: Likewise. * tests/example_scripted_test.in: Likewise. * tests/grub_cmd_regexp.in: Likewise. * tests/grub_script_blanklines.in: Likewise. * tests/grub_script_dollar.in: Likewise. * tests/grub_script_expansion.in: Likewise. * tests/grub_script_final_semicolon.in: Likewise. * tests/partmap_test.in: Likewise. * tests/util/grub-shell-tester.in: Likewise. * tests/util/grub-shell.in: Likewise.
11 lines
200 B
Bash
11 lines
200 B
Bash
#! /bin/sh
|
|
set -e
|
|
|
|
@builddir@/grub-script-check <<EOF
|
|
echo one;
|
|
echo one; echo two
|
|
echo one; echo two;
|
|
echo one ; echo two ;
|
|
echo one ; echo two ; echo three
|
|
echo one; echo two ; echo three;
|
|
EOF
|