bfc9be0f77
This will allow us to load these inputs for unit testing in `dm`. Change-Id: Id256ba7c30d3ec94b98048e47af44cf9efe580d5 Bug: skia:11009 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/357282 Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
32 lines
549 B
Plaintext
32 lines
549 B
Plaintext
// Should return 5
|
|
int return_loop() {
|
|
for (int i = 0; i < 10; ++i) {
|
|
if (i == 5) { return i; }
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
// Should return 35
|
|
int continue_loop() {
|
|
int sum = 0;
|
|
for (int i = 0; i < 10; ++i) {
|
|
if (i < 5) { continue; }
|
|
sum += i;
|
|
}
|
|
return sum;
|
|
}
|
|
|
|
// Should return 15
|
|
int break_loop() {
|
|
int sum = 0;
|
|
for (int i = 0; i < 10; ++i) {
|
|
if (i > 5) { break; }
|
|
sum += i;
|
|
}
|
|
return sum;
|
|
}
|
|
|
|
half4 main() {
|
|
return half4(return_loop(), continue_loop(), break_loop(), 1);
|
|
}
|