aboutsummaryrefslogtreecommitdiff
path: root/spec/main.cpp
blob: 6de21e2763ef76120ced2822e53f49b059aa4b64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <QtCore>

#include "testUtils.h"

int main(int argc, char **argv) {
  QApplication app(argc, argv);

  int exit_code_app = run_app_tests();
  int exit_code_lua = run_lua_tests();

  if (exit_code_app != 0)
    return exit_code_app;
  return exit_code_lua;
}