From 5119e71d41798d9525d09f5e55dfecd3a82da4ba Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 7 Jun 2013 12:42:02 +0200 Subject: [PATCH] Add make call to ensure that bin/extcmd_test exists. refs #4258 --- test/php/runtests | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/php/runtests b/test/php/runtests index 9294f63f9..bb5d95c03 100755 --- a/test/php/runtests +++ b/test/php/runtests @@ -82,6 +82,8 @@ def main(): if not application_path: print 'ERROR: {0} not found!'.format(APPLICATION) return 2 + if not os.path.isfile('./bin/extcmd_test'): + execute_command('make', shell=True) # Commandline preparation command_options = []