[llvm-commits] [LNT] r163048 - /lnt/trunk/lnt/server/db/migrations/upgrade_0_to_1.py

Michael Gottesman mgottesman at apple.com
Fri Aug 31 20:55:15 PDT 2012


Author: mgottesman
Date: Fri Aug 31 22:55:15 2012
New Revision: 163048

URL: http://llvm.org/viewvc/llvm-project?rev=163048&view=rev
Log:
[LNT] upgrade_0_to_1.py: Updated upgrade_0_to_1.py so that the compile
database that it creates is prefixed with ``Compile'' like in
upgrade_1_to_2.py instead of ``compile''. This becomes an issue with
case-sensitive databases.

Modified:
    lnt/trunk/lnt/server/db/migrations/upgrade_0_to_1.py

Modified: lnt/trunk/lnt/server/db/migrations/upgrade_0_to_1.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/db/migrations/upgrade_0_to_1.py?rev=163048&r1=163047&r2=163048&view=diff
==============================================================================
--- lnt/trunk/lnt/server/db/migrations/upgrade_0_to_1.py (original)
+++ lnt/trunk/lnt/server/db/migrations/upgrade_0_to_1.py Fri Aug 31 22:55:15 2012
@@ -139,7 +139,7 @@
         filter_by(name = "Status").first()
 
     # Create a test suite compile with "lnt runtest compile".
-    ts = TestSuite(name="compile", db_key_name="compile")
+    ts = TestSuite(name="compile", db_key_name="Compile")
 
     # Promote some natural information to fields.
     ts.machine_fields.append(MachineField(name="hardware", info_key="hw.model"))





More information about the llvm-commits mailing list