[M120 Migration] Implement ewk_view_is_video_playing api
[platform/framework/web/chromium-efl.git] / build / check_return_value.py
1 #!/usr/bin/env python3
2 # Copyright 2014 The Chromium Authors
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 """This program wraps an arbitrary command and prints "1" if the command ran
7 successfully."""
8
9
10 import os
11 import subprocess
12 import sys
13
14 devnull = open(os.devnull, 'wb')
15 if not subprocess.call(sys.argv[1:], stdout=devnull, stderr=devnull):
16   print(1)
17 else:
18   print(0)