diff --git a/PropCCompiler.py b/PropCCompiler.py index 89ef6d0..1a5edbf 100644 --- a/PropCCompiler.py +++ b/PropCCompiler.py @@ -189,7 +189,7 @@ def compile_binary(self, working_directory, action, source_file, binaries, libra out, err = process.communicate() - if process.returncode == 0 and (err is None or len(err) == 0): + if process.returncode == 0: # and (err is None or len(err) == 0): out = "Compile successful\n" success = True else: diff --git a/README.md b/README.md index 317b94b..7ac1378 100644 --- a/README.md +++ b/README.md @@ -67,14 +67,14 @@ The load test is configured so that each user makes a request each 5 to 15 secon - Load average: 0.3 - 0.45 - uwsgi cpu: 24 - 28% -![Locust 200 users](/locust200.png) +![Locust 200 users](/load\ testing/locust200.png) ### 400 users - Load average: 0.87 - 0.95 - uwsgi cpu: 50 - 62% -![Locust 400 users](/locust400.png) +![Locust 400 users](/load\ testing/locust400.png) ### 500 users @@ -84,4 +84,4 @@ The load test is configured so that each user makes a request each 5 to 15 secon Once a certain load is reached, response times go up fast. -![Locust 500 users](/locust500.png) +![Locust 500 users](/load\ testing/locust500.png) diff --git a/locust200.png b/load testing/locust200.png similarity index 100% rename from locust200.png rename to load testing/locust200.png diff --git a/locust400.png b/load testing/locust400.png similarity index 100% rename from locust400.png rename to load testing/locust400.png diff --git a/locust500.png b/load testing/locust500.png similarity index 100% rename from locust500.png rename to load testing/locust500.png