Searched refs:randomSeed (Results 1 – 1 of 1) sorted by relevance
551 void randomizeTestModules(List<ModuleDefinition> runModules, long randomSeed) { in randomizeTestModules() argument553 if (randomSeed == -1) { in randomizeTestModules()554 randomSeed = System.currentTimeMillis(); in randomizeTestModules()556 CLog.i("Randomizing all the modules with seed: %s", randomSeed); in randomizeTestModules()557 Collections.shuffle(runModules, new Random(randomSeed)); in randomizeTestModules()558 mBuildInfo.addBuildAttribute(RANDOM_SEED, String.valueOf(randomSeed)); in randomizeTestModules()