aboutsummaryrefslogtreecommitdiffstats
path: root/test/InteractiveTests.h
blob: be07605908497e24f4233c504cbe57f9c707d19d (plain) (blame)
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
/*
    This file is part of solidity.

    solidity is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    solidity is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with solidity.  If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once

#include <test/TestCase.h>
#include <test/libsolidity/ASTJSONTest.h>
#include <test/libsolidity/SyntaxTest.h>
#include <test/libsolidity/SMTCheckerJSONTest.h>
#include <test/libyul/YulOptimizerTest.h>
#include <test/libyul/ObjectCompilerTest.h>

#include <boost/filesystem.hpp>

namespace dev
{
namespace solidity
{
namespace test
{

/** Container for all information regarding a testsuite */
struct Testsuite
{
    char const* title;
    boost::filesystem::path const path;
    boost::filesystem::path const subpath;
    bool smt;
    bool ipc;
    TestCase::TestCaseCreator testCaseCreator;
};


/// Array of testsuits that can be run interactively as well as automatically
Testsuite const g_interactiveTestsuites[] = {
/*
    Title                  Path            Subpath                SMT    IPC    Creator function */
    {"Yul Optimizer",       "libyul",      "yulOptimizerTests",   false, false, &yul::test::YulOptimizerTest::create},
    {"Yul Object Compiler", "libyul",      "objectCompiler",      false, false, &yul::test::ObjectCompilerTest::create},
    {"Syntax",              "libsolidity", "syntaxTests",         false, false, &SyntaxTest::create},
    {"JSON AST",            "libsolidity", "ASTJSON",             false, false, &ASTJSONTest::create},
    {"SMT Checker",         "libsolidity", "smtCheckerTests",     true,  false, &SyntaxTest::create},
    {"SMT Checker JSON",    "libsolidity", "smtCheckerTestsJSON", true,  false, &SMTCheckerTest::create}
};

}
}
}