[llvm-commits] [test-suite] r75293 - /test-suite/trunk/Makefile.programs

David Goodwin david_goodwin at apple.com
Fri Jul 10 14:40:43 PDT 2009


Author: david_goodwin
Date: Fri Jul 10 16:40:43 2009
New Revision: 75293

URL: http://llvm.org/viewvc/llvm-project?rev=75293&view=rev
Log:
Pass all remote paramters to bugpoint.

Modified:
    test-suite/trunk/Makefile.programs

Modified: test-suite/trunk/Makefile.programs
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.programs?rev=75293&r1=75292&r2=75293&view=diff

==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Fri Jul 10 16:40:43 2009
@@ -514,10 +514,15 @@
 
 # Support remote execution
 ifdef REMOTE_HOST
-ifdef REMOTE_USER
-BUGPOINT_OPTIONS += -remote-host=$(REMOTE_HOST) -remote-user=$(REMOTE_USER)
-else
 BUGPOINT_OPTIONS += -remote-host=$(REMOTE_HOST)
+ifdef REMOTE_PORT
+BUGPOINT_OPTIONS += -remote-port=$(REMOTE_PORT)
+endif
+ifdef REMOTE_USER
+BUGPOINT_OPTIONS += -remote-user=$(REMOTE_USER)
+endif
+ifdef REMOTE_CLIENT
+BUGPOINT_OPTIONS += -remote-client=$(REMOTE_CLIENT)
 endif
 endif
 





More information about the llvm-commits mailing list