summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/ReadableStream/shell.js
blob: 7e83ed29344a9d4229fac6c9b81064d12d6d2156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Return a promise that will resolve to `undefined` the next time jobs are
// processed.
//
// `ticks` indicates how long the promise should "wait" before resolving: a
// promise created with `asyncSleep(n)` will become settled and fire its handlers
// before a promise created with `asyncSleep(n+1)`.
//
function asyncSleep(ticks) {
    let p = Promise.resolve();
    if (ticks > 0) {
        return p.then(() => asyncSleep(ticks - 1));
    }
    return p;
}

// Run the async function `test`. Wait for it to finish running. Throw if it
// throws or if it fails to finish (awaiting a value forever).
function runAsyncTest(test) {
    let passed = false;
    let problem = "test did not finish";
    test()
        .then(_ => { passed = true; })
        .catch(exc => { problem = exc; });
    drainJobQueue();
    if (!passed) {
        throw problem;
    }

    reportCompare(0, 0);
}