From 56c4dbed96774e2f0d8adbe20ff27c3bb81eba3c Mon Sep 17 00:00:00 2001 From: michel-cf Date: Sun, 17 Jul 2016 21:19:17 +0200 Subject: [PATCH 1/3] Fix Warnings Stop compiling code (parallaxinc/BlocklyProp#370) --- PropCCompiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: From 8cc757250cd791c983d203436cd57854c67f84f7 Mon Sep 17 00:00:00 2001 From: Jim Ewald Date: Mon, 18 Jul 2016 10:20:49 -0700 Subject: [PATCH 2/3] Move performance graphs to load testing folder --- locust200.png => load testing/locust200.png | Bin locust400.png => load testing/locust400.png | Bin locust500.png => load testing/locust500.png | Bin 3 files changed, 0 insertions(+), 0 deletions(-) rename locust200.png => load testing/locust200.png (100%) rename locust400.png => load testing/locust400.png (100%) rename locust500.png => load testing/locust500.png (100%) 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 From 0a86d3686f99c6e24e30c6d87329b6ecdff05b9b Mon Sep 17 00:00:00 2001 From: Jim Ewald Date: Mon, 18 Jul 2016 10:47:23 -0700 Subject: [PATCH 3/3] Update performance graph URIs --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)