diff --git a/Source/DSPSpy/util/createtest.pl b/Source/DSPSpy/util/createtest.pl index e4fe919c57..8417b18689 100755 --- a/Source/DSPSpy/util/createtest.pl +++ b/Source/DSPSpy/util/createtest.pl @@ -106,7 +106,7 @@ for(my $i = 0;$i < scalar(@cmdList);$i++) { close(NAMES); if (! $merge) { - system("dsptool -m $name.lst -h $name"); + print `dsptool -m $name.lst -h $name`; open(NAMES, "$name.lst"); my @names = ; chomp @names; @@ -117,7 +117,7 @@ for(my $i = 0;$i < scalar(@cmdList);$i++) { } if ($merge) { - system("dsptool -m all.lst -h unite_test"); + print `dsptool -m all.lst -h unite_test`; open(NAMES, "all.lst"); my @names = ; chomp @names;