Send a crash report when a hung process is detected.
[chromium-blink-merge.git] / native_client_sdk / src / tests / nacl_io_socket_test / test.js
blob88648bac181cda446131a76de6e41c53795dc3df
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 function addTests() {
6   common.tester.addAsyncTest('nacl_io_socket_test', function (test) {
7     var intervalId = window.setInterval(function () {
8       if (!testsFinished)
9         return;
11       window.clearInterval(intervalId);
12       if (failedTests > 0)
13         test.fail('tests failed');
14       else
15         test.pass();
16     }, 100);
17   });