blob: c6aa7e10e9f79d1337aa516e1cf11c91a08b95f5 [file] [log] [blame]
david_williams1a993892007-07-29 19:19:05 +00001<?php
2// if compilelogsSummary.xml exists, assume the "new way" (summary in xml file).
3// else, assume old way
4//echo "drops/$bValue/$innerValue/compilelogsSummary.xml";
5if (file_exists("drops/$bValue/$innerValue/compilelogsSummary.xml"))
6{
7 include 'compileLogSumaryXML.php';
8}
9// if compileResults.php exists, assume the "new way" (testResults and compileResult seperated).
10// else, assume old way
11else if (file_exists("drops/$bValue/$innerValue/compileResults.php"))
12{
13 include 'parse2Handling.php';
14}
15else {
16 include 'parseHandling.php';
17}
18?>