Skip to content

Commit 80ed356

Browse files
committedSep 21, 2020
-
1 parent 7b77f4f commit 80ed356

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed
 

‎test/jdk/java/lang/Continuation/Fuzz.java

+10-4
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
import java.lang.StackWalker.StackFrame;
5656
import java.nio.file.*;
5757
import java.util.*;
58+
import java.util.function.*;
5859
import java.util.stream.*;
5960
import static java.lang.Math.max;
6061
import static java.lang.Math.min;
@@ -394,6 +395,11 @@ int depth() {
394395
return d;
395396
}
396397

398+
boolean traceHas(Predicate<Op> pred) {
399+
for (int i = 0; i < index; i++) if (pred.test(trace[i])) return true;
400+
return false;
401+
}
402+
397403
String[] expectedStackTrace() {
398404
var ms = new ArrayList<String>();
399405
for (int i = index; i >= 0; i--) if (!Op.NON_CALLS.contains(trace[i])) ms.add(method(trace[i]).getName());
@@ -417,13 +423,12 @@ void verifyResult(int result) {
417423
}
418424

419425
boolean shouldPin() {
420-
for (int i = 0; i < index; i++)
421-
if (trace[i] == Op.CALL_I_PIN || trace[i] == Op.CALL_C_PIN) return true;
422-
return false;
426+
return traceHas(Op.PIN::contains);
423427
}
424428

425429
void verifyPin(boolean yieldResult) {
426430
if (yieldResult) yields++;
431+
if (!yieldResult && traceHas(op -> Op.INTERPRETED.contains(op) && Op.REFLECTED.contains(op))) return;
427432
assert yieldResult != shouldPin() : "res: " + yieldResult + " shouldPin: " + shouldPin();
428433
}
429434

@@ -439,6 +444,7 @@ boolean shouldThrow() {
439444
}
440445

441446
void captureStack() {
447+
// Thread.dumpStack();
442448
if (!VERIFY_STACK) return;
443449
backtrace = Thread.currentThread().getStackTrace();
444450
fbacktrace = StackWalkerHelper.getStackFrames(SCOPE);
@@ -494,7 +500,7 @@ void verifyStack(Object[] observed) {
494500
verifyStack(
495501
expectedStackTrace(),
496502
Arrays.stream(cutStack(observed)).filter(sf -> Fuzz.class.getName().equals(sfClassName(sf)))
497-
.collect(Collectors.toList()).toArray(new Object[0]));
503+
.collect(Collectors.toList()).toArray(Object[]::new));
498504
}
499505

500506
static void verifyStack(Object[] expected, Object[] observed) {

0 commit comments

Comments
 (0)
Please sign in to comment.