[Lldb-commits] [lldb] r251544 - Try to fix the linux buildbot.
Zachary Turner via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 28 12:18:54 PDT 2015
Author: zturner
Date: Wed Oct 28 14:18:53 2015
New Revision: 251544
URL: http://llvm.org/viewvc/llvm-project?rev=251544&view=rev
Log:
Try to fix the linux buildbot.
It's complaining that it doesn't under the "import" command, so
I guess I need this hashbang at the beginning so that it knows
it's a Python script.
Modified:
lldb/trunk/test/dotest.py
Modified: lldb/trunk/test/dotest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dotest.py?rev=251544&r1=251543&r2=251544&view=diff
==============================================================================
--- lldb/trunk/test/dotest.py (original)
+++ lldb/trunk/test/dotest.py Wed Oct 28 14:18:53 2015
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
import use_lldb_suite
import lldbsuite.test
More information about the lldb-commits
mailing list