From: Karel Kočí Date: Tue, 11 Aug 2015 17:43:30 +0000 (+0200) Subject: Add measure tool desription to database X-Git-Tag: v201509~82^2~20 X-Git-Url: http://rtime.felk.cvut.cz/gitweb/linux-conf-perf.git/commitdiff_plain/030dc22bc6c28faac3fadcd4a7df93a2a4147535 Add measure tool desription to database --- diff --git a/conf.py b/conf.py index 5702027..591a0b3 100644 --- a/conf.py +++ b/conf.py @@ -31,6 +31,10 @@ boot_command = ['./boot_script'] # Command to parse double value from boot output parse_command = ['./parse_script'] +# measurement_identifier +# Identifier of measurement can consist of measure tool name and version +measure_identifier = 'cyclictest-v0.92' + # picosat_args # Additional arguments passed to PicoSAT. picosat_args = [] diff --git a/scripts/database.py b/scripts/database.py index 16556a8..eef118d 100644 --- a/scripts/database.py +++ b/scripts/database.py @@ -102,14 +102,14 @@ class database: def add_measure(self, mfile, conf_id, value = None): "Add measurement." ps = self.db.prepare("""INSERT INTO measure - (conf, mfile, value, mtime, toolgit, linuxgit) + (conf, mfile, value, mtime, toolgit, linuxgit, measurement) VALUES - ($1, $2, $3, $4, $5, $6); + ($1, $2, $3, $4, $5, $6, $7); """) gt = self.check_toolsgit() lgt = self.check_linuxgit() tm = datetime.datetime.now() - ps(conf_id, mfile, value, tm, gt, lgt) + ps(conf_id, mfile, value, tm, gt, lgt, conf.measure_identifier) def update_measure(self, measure_id, value): "Update measured value"