Removing the orion acceptance tests (#3086)

* Not executing Orion acceptance tests

Signed-off-by: Jiri Peinlich <jiri.peinlich@gmail.com>

* Removing ORION from enclave lists for tests

Signed-off-by: Jiri Peinlich <jiri.peinlich@gmail.com>
This commit is contained in:
Jiri Peinlich
2021-11-22 00:09:38 +00:00
committed by GitHub
parent b1e2496c19
commit e07d804e0e
10 changed files with 22 additions and 39 deletions

View File

@@ -14,8 +14,19 @@
*/
package org.hyperledger.enclave.testutil;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
public enum EnclaveType {
ORION,
TESSERA,
NOOP
NOOP;
public static List<EnclaveType> valuesForTests() {
return Arrays.stream(values())
.filter(enclaveType -> enclaveType != NOOP)
.filter(enclaveType -> enclaveType != ORION)
.collect(Collectors.toList());
}
}