Updated Branches:
  refs/heads/FLUME-1787 5ccd59fe3 -> 3c9e8f8c2

Output .txt not .out


Project: http://git-wip-us.apache.org/repos/asf/flume/repo
Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/3c9e8f8c
Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/3c9e8f8c
Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/3c9e8f8c

Branch: refs/heads/FLUME-1787
Commit: 3c9e8f8c2685ce0f361238c3ff3bf23ec0eaa1d3
Parents: 5ccd59f
Author: Brock Noland <[email protected]>
Authored: Thu Dec 20 13:19:45 2012 -0600
Committer: Brock Noland <[email protected]>
Committed: Thu Dec 20 13:19:45 2012 -0600

----------------------------------------------------------------------
 dev-support/test-patch.py |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flume/blob/3c9e8f8c/dev-support/test-patch.py
----------------------------------------------------------------------
diff --git a/dev-support/test-patch.py b/dev-support/test-patch.py
index 4583a63..f0fa0d2 100755
--- a/dev-support/test-patch.py
+++ b/dev-support/test-patch.py
@@ -118,7 +118,7 @@ def git_checkout(result, branch):
     result.fatal("git merge failed")
 
 def git_apply(result, cmd, patch_file, strip, output_dir):
-  output_file = "%s/apply.out" % (output_dir)
+  output_file = "%s/apply.txt" % (output_dir)
   rc = execute("%s -p%s < %s 1>%s 2>&1" % (cmd, strip, patch_file, 
output_file))
   with open(output_file) as fh:
     output = fh.read()
@@ -128,12 +128,12 @@ def git_apply(result, cmd, patch_file, strip, output_dir):
     result.fatal("failed to apply patch (exit code %d):\n%s\n" % (rc, output))
 
 def mvn_clean(result, output_dir):
-  rc = execute("mvn clean 1>%s/clean.out 2>&1" % output_dir)
+  rc = execute("mvn clean 1>%s/clean.txt 2>&1" % output_dir)
   if rc != 0:
     result.fatal("failed to clean project (exit code %d)" % (rc))
 
 def mvn_install(result, output_dir):
-  rc = execute("mvn install -DskipTests 1>%s/install.out 2>&1" % output_dir)
+  rc = execute("mvn install -DskipTests 1>%s/install.txt 2>&1" % output_dir)
   if rc != 0:
     result.fatal("failed to build with patch (exit code %d)" % (rc))
 
@@ -143,7 +143,7 @@ def find_all_files(top):
             yield os.path.join(root, f)
 
 def mvn_test(result, output_dir):
-  rc = execute("mvn test 1>%s/test.out 2>&1" % output_dir)
+  rc = execute("mvn test 1>%s/test.txt 2>&1" % output_dir)
   if rc == 0:
     result.success("all tests passed")
   else:

Reply via email to