diff --git a/pdf2htmlEX/test/installAutomaticTestSoftware b/pdf2htmlEX/test/installAutomaticTestSoftwareApt
similarity index 100%
rename from pdf2htmlEX/test/installAutomaticTestSoftware
rename to pdf2htmlEX/test/installAutomaticTestSoftwareApt
diff --git a/pdf2htmlEX/test/produceHtmlForBrowserTests b/pdf2htmlEX/test/produceHtmlForBrowserTests
index c0979a6..448a35f 100755
--- a/pdf2htmlEX/test/produceHtmlForBrowserTests
+++ b/pdf2htmlEX/test/produceHtmlForBrowserTests
@@ -5,7 +5,7 @@
# This is how we run pdf2htmlEX on a particular file, and arguments.
#
-function runPdf2htmlEX {
+runPdf2htmlEX() {
pdfFileName=$1
htmlFileName=$(echo $pdfFileName | cut -d'.' -f1).html
arguments=$2
@@ -39,7 +39,7 @@ function runPdf2htmlEX {
# and '#TEST_IGNORE_END' (we pipe the file in via stdin and save it via
# stdout)
#
-function copy_TEST_IGNORE_file {
+copy_TEST_IGNORE_file() {
skipLine=echo
while IFS= read -r line ; do
if echo $line | grep -q "^#TEST_IGNORE_BEGIN" ; then
diff --git a/pdf2htmlEX/test/testOutput b/pdf2htmlEX/test/testOutput
index 8e11fd3..3a44f25 100755
--- a/pdf2htmlEX/test/testOutput
+++ b/pdf2htmlEX/test/testOutput
@@ -8,7 +8,7 @@
# This is how we run pdf2htmlEX on a particular file, and arguments.
#
-function runPdf2htmlEX {
+runPdf2htmlEX() {
# collect the arguments
#
export LAST_TEST_NAME="$*"
@@ -36,7 +36,7 @@ function runPdf2htmlEX {
# This is how we test for expected output files
#
-function hasExpectedFiles {
+hasExpectedFiles() {
filesFound="true"
for anExpectedFile in $1 ; do
if ! test -r $PDF2HTMLEX_TMPDIR/$anExpectedFile ; then
@@ -57,7 +57,7 @@ function hasExpectedFiles {
# and '#TEST_IGNORE_END' (we pipe the file in via stdin and save it via
# stdout)
#
-function copy_TEST_IGNORE_file {
+copy_TEST_IGNORE_file() {
skipLine=echo
while IFS= read -r line ; do
if echo $line | grep -q "^#TEST_IGNORE_BEGIN" ; then