[LNT] r312058 - tests/V4Pages: Add some missing URLs

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 29 15:59:26 PDT 2017


Author: matze
Date: Tue Aug 29 15:59:26 2017
New Revision: 312058

URL: http://llvm.org/viewvc/llvm-project?rev=312058&view=rev
Log:
tests/V4Pages: Add some missing URLs

Modified:
    lnt/trunk/tests/server/ui/V4Pages.py

Modified: lnt/trunk/tests/server/ui/V4Pages.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/tests/server/ui/V4Pages.py?rev=312058&r1=312057&r2=312058&view=diff
==============================================================================
--- lnt/trunk/tests/server/ui/V4Pages.py (original)
+++ lnt/trunk/tests/server/ui/V4Pages.py Tue Aug 29 15:59:26 2017
@@ -242,9 +242,6 @@ def main():
     # Fetch the index page.
     check_code(client, '/')
 
-    # Rules the index page.
-    check_code(client, '/rules')
-
     # Get the V4 overview page.
     check_code(client, '/v4/nts/')
 
@@ -469,6 +466,10 @@ def main():
                    '/db_default/v4/nts/submitRun')
     check_code(client, '/db_default/v4/nts/submitRun')
 
+    check_code(client, '/v4/nts/global_status')
+
+    check_code(client, '/v4/nts/recent_activity')
+
     # Now check the compile report
     # Get the V4 overview page.
     check_code(client, '/v4/compile/')
@@ -537,5 +538,12 @@ def main():
     error_page = check_code(client, '/gone', expected_code=404)
     assert "test" in error_page.data
 
+    check_code(client, '/db_default/summary_report')
+
+    check_code(client, '/rules')
+    check_code(client, '/log')
+    check_code(client, '/__health')
+    check_code(client, '/ping')
+
 if __name__ == '__main__':
     main()




More information about the llvm-commits mailing list