Created
March 8, 2016 19:00
-
-
Save adhithyan15/1fb3219ad2d8da7c8421 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
values = [2,4,6,8] | |
iteration_count = 5 | |
for x in range(0, len(values)): | |
print values[x] | |
p = subprocess.Popen("./testbarrier " + str(values[x])), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment