aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/ecmascripttests/qjstest/main.cpp
blob: 4a3541d892a8d634a7f109aa96405c6e4afaa982 (plain)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the V4VM module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#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;
}