diff --git a/htdocs/public/test/test_exec.php b/htdocs/public/test/test_exec.php
index a25e860021c..f805cc19b5c 100644
--- a/htdocs/public/test/test_exec.php
+++ b/htdocs/public/test/test_exec.php
@@ -66,7 +66,7 @@ echo "Test
\n";
$out='';
$ret=0;
-$file = '/tmp/aaa';
+$file = '/tmp/test.txt';
$f=fopen($file, 'r');
if ($f) {
$s=fread($f, 4096);
@@ -76,10 +76,14 @@ if ($f) {
print "Failed to open file ".$file."
\n";
}
-exec('cat /aaa; ls /dev/std*; sleep 1;', $out, $ret);
+print '
'."\n";
+
+exec('cat /test.txt; ls /dev/std*; sleep 1;', $out, $ret);
print $ret."
\n";
print_r($out);
+print '
'."\n";
+
$ret = 0;
$out = null;
exec('/usr/bin/clamdscan --fdpass filethatdoesnotexists.php', $out, $ret);