UNPKG

1.5 kBPlain TextView Raw
1#!/usr/bin/env node
2/*
3 * Licensed to Cloudkick, Inc ('Cloudkick') under one or more
4 * contributor license agreements. See the NOTICE file distributed with
5 * this work for additional information regarding copyright ownership.
6 * Cloudkick licenses this file to You under the Apache License, Version 2.0
7 * (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19var path = require('path');
20
21var logmagic = require('logmagic');
22
23var cwd = process.cwd();
24var argv = process.argv;
25var whiskey = require('../index');
26var run = require('../lib/run');
27var argvLen = argv.length;
28
29if (argvLen >= 3) {
30 if (argv[2].indexOf('-') !== 0) {
31 argv.splice(2, 0, '--tests');
32 }
33}
34
35logmagic.route('whiskey.process_runner.*', logmagic.INFO, 'process_runner');
36whiskey.run(cwd, argv);
37
38process.on('uncaughtException', function(err) {
39 console.log(err.message);
40
41 if (err.stack) {
42 console.log(err.stack);
43 }
44
45 run.exitCode = 1;
46
47 if (run.processRunner) {
48 run.processRunner.stop(process.exit.bind(null, 1));
49 }
50 else {
51 process.exit(1);
52 }
53});