From e4fbbcd0ebea2eb3d35f20c8a8f86111e6c9d305 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Thu, 16 Mar 2017 17:18:28 +0100 Subject: [PATCH] migrate wording boost->catch --- js/client/modules/@arangodb/testing.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/js/client/modules/@arangodb/testing.js b/js/client/modules/@arangodb/testing.js index c049775a70..909dad6b3c 100644 --- a/js/client/modules/@arangodb/testing.js +++ b/js/client/modules/@arangodb/testing.js @@ -32,7 +32,7 @@ const functionsDocumentation = { 'arangosh': 'arangosh exit codes tests', 'authentication': 'authentication tests', 'authentication_parameters': 'authentication parameters tests', - 'boost': 'boost test suites', + 'catch': 'catch test suites', 'config': 'checks the config file parsing', 'client_resilience': 'client resilience tests', 'cluster_sync': 'cluster sync tests', @@ -78,7 +78,7 @@ const optionsDocumentation = [ ' - `skipArangoBenchNonConnKeepAlive`: if set to true benchmark do not use keep-alive', ' - `skipArangoBench`: if set to true benchmark tests are skipped', ' - `skipAuthentication : testing authentication and authentication_paramaters will be skipped.', - ' - `skipBoost`: if set to true the boost unittests are skipped', + ' - `skipCatch`: if set to true the catch unittests are skipped', ' - `skipCache`: if set to true, the hash cache unittests are skipped', ' - `skipConfig`: omit the noisy configuration tests', ' - `skipFoxxQueues`: omit the test for the foxx queues', @@ -178,7 +178,7 @@ const optionsDefaults = { 'skipArangoBench': false, 'skipArangoBenchNonConnKeepAlive': true, 'skipAuthentication': false, - 'skipBoost': false, + 'skipCatch': false, 'skipCache': true, 'skipEndpoints': false, 'skipGeo': false, @@ -2036,7 +2036,7 @@ let allTests = [ 'arangosh', 'authentication', 'authentication_parameters', - 'boost', + 'catch', 'config', 'dump', 'dump_authentication', @@ -2674,10 +2674,10 @@ testFuncs.authentication_parameters = function (options) { }; // ////////////////////////////////////////////////////////////////////////////// -// / @brief TEST: boost +// / @brief TEST: Catch // ////////////////////////////////////////////////////////////////////////////// -function locateBoostTest (name) { +function locateCatchTest (name) { var file = fs.join(UNITTESTS_DIR, name + executable_ext); if (!fs.exists(file)) { @@ -2686,14 +2686,14 @@ function locateBoostTest (name) { return file; } -testFuncs.boost = function (options) { +testFuncs.catch = function (options) { let args = []; let results = {}; const icuDir = UNITTESTS_DIR + '/'; require('internal').env.ICU_DATA = icuDir; - const run = locateBoostTest('arangodbtests'); - if (!options.skipBoost) { + const run = locateCatchTest('arangodbtests'); + if (!options.skipCatch) { if (run !== '') { results.basics = executeAndWait(run, ['[exclude:longRunning][exclude:cache]', '-r', 'junit', '-o', fs.join('out', 'catch-standard.xml')], options); } else {