summaryrefslogtreecommitdiffstats
path: root/tests/auto/v8/v8main.cpp
blob: fa0137938e639b1ee1fdacc9b035099afe60583b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "v8test.h"
#include <stdio.h>

#define RUN_TEST(testname) { \
    if (!v8test_ ## testname()) \
        printf ("Test %s FAILED\n", # testname); \
}

int main(int argc, char *argv[])
{
    v8::V8::SetFlagsFromCommandLine(&argc, argv, true);

    RUN_TEST(eval);
    RUN_TEST(userobjectcompare);

    return -1;
}