mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/arangodb/arangodb into compaction
This commit is contained in:
commit
d9640d74e5
|
@ -1103,10 +1103,10 @@ function performTests(options, testList, testname, remote) {
|
|||
|
||||
first = false;
|
||||
if (options.loopEternal) {
|
||||
if (options.loopSleepWhen % loopCount == 0) {
|
||||
print("sleeping...")
|
||||
internal.sleep(options.loopSleepSec);
|
||||
print("continuing.")
|
||||
if (options.loopSleepWhen % loopCount === 0) {
|
||||
print("sleeping...");
|
||||
sleep(options.loopSleepSec);
|
||||
print("continuing.");
|
||||
}
|
||||
loopCount++;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*jshint globalstrict:false, strict:false, sub: true, maxlen: 500 */
|
||||
/*global assertEqual, AQL_EXPLAIN */
|
||||
/*global assertEqual, AQL_EXECUTE, AQL_EXPLAIN */
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief tests for query language, edges
|
||||
///
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*jshint globalstrict:false, strict:false, sub: true, maxlen: 500 */
|
||||
/*global assertEqual, AQL_EXPLAIN */
|
||||
/*global assertEqual, AQL_EXECUTE, AQL_EXPLAIN */
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief tests for query language, edges
|
||||
///
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*jshint globalstrict:false, strict:false, sub: true, maxlen: 500 */
|
||||
/*global assertEqual, AQL_EXPLAIN */
|
||||
/*global assertEqual, AQL_EXECUTE, AQL_EXPLAIN */
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief tests for Ahuacatl, hash index queries
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*jshint globalstrict:false, strict:false, sub: true, maxlen: 500 */
|
||||
/*global assertEqual, AQL_EXPLAIN */
|
||||
/*global assertEqual, AQL_EXECUTE, AQL_EXPLAIN */
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief tests for Ahuacatl, hash index queries
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*jshint globalstrict:false, strict:false, maxlen: 500 */
|
||||
/*global assertEqual, AQL_EXPLAIN */
|
||||
/*global assertEqual, AQL_EXECUTE, AQL_EXPLAIN */
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief tests for Ahuacatl, skiplist index queries
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*jshint globalstrict:false, strict:false, maxlen: 500 */
|
||||
/*global assertEqual, AQL_EXPLAIN */
|
||||
/*global assertEqual, AQL_EXECUTE, AQL_EXPLAIN */
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief tests for Ahuacatl, skiplist index queries
|
||||
|
|
Loading…
Reference in New Issue