Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / native_client / tests / toolchain / condition_variable_cpp11.cc
1 /*
2  * Copyright (c) 2013 The Native Client Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6
7 /*
8  * This test ensures that the PNaCl backends can deal with C++11's
9  * <condition_variable> header.
10  */
11
12 #include <condition_variable>
13 #include <inttypes.h>
14 #include <stdint.h>
15 #include <stdio.h>
16 #include <stdlib.h>
17
18
19 // TODO(jfb) Test condition_variable.
20
21 int main() {
22   return 0;
23 }