# HG changeset patch # User William Astle # Date 1512088704 25200 # Node ID 3cd8aa013b88b24ca0fd2ad54ff79baedef7f7cb # Parent 639d19f5fb8eedf172ae78835865c604e68ec57c Change the perl invocations for the test bits to use /usr/bin/env Using "env" to find where perl is located is probably more portable. Changed the test harness thingie and the existing opcode test to use /usr/bin/env instead of a hard coded perl path. diff -r 639d19f5fb8e -r 3cd8aa013b88 test/runtests --- a/test/runtests Wed Nov 29 17:24:19 2017 -0700 +++ b/test/runtests Thu Nov 30 17:38:24 2017 -0700 @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/env perl # # This program will execute all programs in the "tests" directory. Each # program is expected to produce output as follows on stdout: diff -r 639d19f5fb8e -r 3cd8aa013b88 test/tests/opcodes6809.pl --- a/test/tests/opcodes6809.pl Wed Nov 29 17:24:19 2017 -0700 +++ b/test/tests/opcodes6809.pl Thu Nov 30 17:38:24 2017 -0700 @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/env perl # # these tests determine if the opcodes for each instruction, in each # addressing mode, are correct.