2013-07-10 14:07:56 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "test/run_loop.h"
|
2013-07-10 14:07:56 +00:00
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
namespace test {
|
|
|
|
|
|
2018-10-25 10:45:47 -07:00
|
|
|
void PressEnterToContinue(SingleThreadedTaskQueueForTesting&) {
|
2013-07-10 14:07:56 +00:00
|
|
|
puts(">> Press ENTER to continue...");
|
2018-06-19 15:03:05 +02:00
|
|
|
while (getc(stdin) != '\n' && !feof(stdin))
|
|
|
|
|
;
|
2013-07-10 14:07:56 +00:00
|
|
|
}
|
|
|
|
|
} // namespace test
|
|
|
|
|
} // namespace webrtc
|