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;
|
first = false;
|
||||||
if (options.loopEternal) {
|
if (options.loopEternal) {
|
||||||
if (options.loopSleepWhen % loopCount == 0) {
|
if (options.loopSleepWhen % loopCount === 0) {
|
||||||
print("sleeping...")
|
print("sleeping...");
|
||||||
internal.sleep(options.loopSleepSec);
|
sleep(options.loopSleepSec);
|
||||||
print("continuing.")
|
print("continuing.");
|
||||||
}
|
}
|
||||||
loopCount++;
|
loopCount++;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*jshint globalstrict:false, strict:false, sub: true, maxlen: 500 */
|
/*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
|
/// @brief tests for query language, edges
|
||||||
///
|
///
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*jshint globalstrict:false, strict:false, sub: true, maxlen: 500 */
|
/*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
|
/// @brief tests for query language, edges
|
||||||
///
|
///
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*jshint globalstrict:false, strict:false, sub: true, maxlen: 500 */
|
/*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
|
/// @brief tests for Ahuacatl, hash index queries
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*jshint globalstrict:false, strict:false, sub: true, maxlen: 500 */
|
/*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
|
/// @brief tests for Ahuacatl, hash index queries
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*jshint globalstrict:false, strict:false, maxlen: 500 */
|
/*jshint globalstrict:false, strict:false, maxlen: 500 */
|
||||||
/*global assertEqual, AQL_EXPLAIN */
|
/*global assertEqual, AQL_EXECUTE, AQL_EXPLAIN */
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
/// @brief tests for Ahuacatl, skiplist index queries
|
/// @brief tests for Ahuacatl, skiplist index queries
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*jshint globalstrict:false, strict:false, maxlen: 500 */
|
/*jshint globalstrict:false, strict:false, maxlen: 500 */
|
||||||
/*global assertEqual, AQL_EXPLAIN */
|
/*global assertEqual, AQL_EXECUTE, AQL_EXPLAIN */
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
/// @brief tests for Ahuacatl, skiplist index queries
|
/// @brief tests for Ahuacatl, skiplist index queries
|
||||||
|
|
Loading…
Reference in New Issue