1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include <QJSEngine>
#include <QCoreApplication>
#include <QCommandLineParser>
#include <qdebug.h>
#include <stdlib.h>
#include "test262runner.h"
int main(int argc, char **argv)
{
QCoreApplication app(argc, argv);
QCommandLineParser parser;
parser.addHelpOption();
parser.addVersionOption();
QCommandLineOption verbose("verbose", "Verbose output");
parser.addOption(verbose);
QCommandLineOption commandOption("command", "Javascript command line interpreter", "command");
parser.addOption(commandOption);
QCommandLineOption testDir("tests", "path to the tests", "tests", "test262");
parser.addOption(testDir);
QCommandLineOption cat("cat", "Print packaged test code that would be run");
parser.addOption(cat);
QCommandLineOption parallel("parallel", "Run tests in parallel");
parser.addOption(parallel);
QCommandLineOption jit("jit", "JIT all code");
parser.addOption(jit);
QCommandLineOption bytecode("interpret", "Run using the bytecode interpreter");
parser.addOption(bytecode);
QCommandLineOption withExpectations("with-test-expectations", "Parse TestExpectations to deal with known failures");
parser.addOption(withExpectations);
QCommandLineOption updateExpectations("update-expectations", "Update TestExpectations to remove unexepected passes");
parser.addOption(updateExpectations);
QCommandLineOption writeExpectations("write-expectations", "Generate a new TestExpectations file based on the results of the run");
parser.addOption(writeExpectations);
parser.addPositionalArgument("[filter]", "Only run tests that contain filter in their name");
parser.process(app);
Test262Runner testRunner(parser.value(commandOption), parser.value(testDir));
QStringList otherArgs = parser.positionalArguments();
if (otherArgs.size() > 1) {
qWarning() << "too many arguments";
return 1;
} else if (otherArgs.size()) {
testRunner.setFilter(otherArgs.at(0));
}
if (parser.isSet(cat)) {
testRunner.cat();
return 0;
}
if (parser.isSet(updateExpectations) && parser.isSet(writeExpectations)) {
qWarning() << "Can only specify one of --update-expectations and --write-expectations.";
exit(1);
}
if (parser.isSet(jit) && parser.isSet(bytecode)) {
qWarning() << "Can only specify one of --jit and --interpret.";
exit(1);
}
int flags = 0;
if (parser.isSet(verbose))
flags |= Test262Runner::Verbose;
if (parser.isSet(parallel))
flags |= Test262Runner::Parallel;
if (parser.isSet(jit))
flags |= Test262Runner::ForceJIT;
if (parser.isSet(bytecode))
flags |= Test262Runner::ForceBytecode;
if (parser.isSet(withExpectations))
flags |= Test262Runner::WithTestExpectations;
if (parser.isSet(updateExpectations))
flags |= Test262Runner::UpdateTestExpectations;
if (parser.isSet(writeExpectations))
flags |= Test262Runner::WriteTestExpectations;
testRunner.setFlags(flags);
if (testRunner.run())
return EXIT_SUCCESS;
else
return EXIT_FAILURE;
}
|