From 9f545e9f54f4f6ffe559ddf2e834b8a044d0dc9f Mon Sep 17 00:00:00 2001 From: Wosser1sProductions Date: Fri, 24 Mar 2017 16:30:14 +0100 Subject: [PATCH] Test generation and whitening sequencing + Added script lora_receive_all.py as a command line interface to set-up gnuradio on other platforms and receive LoRa packets ~ Automated whitening sequence generation with createWhiteningValues.py for various settings ~ Changed _examplify.py to also create XML database with the generated samples + Added same test sets, but for RTL-SDR and USRP (XML database) --- apps/lora_receive_all.py | 124 +++ examples/__init__.py | 0 examples/_examplify.py | 107 +- examples/lora-whitening/__init__.py | 0 .../lora-whitening/createWhiteningValues.py | 34 +- examples/lora-whitening/runScript.sh | 4 - examples/lora-whitening/runSequencer.sh | 1 + examples/qa_BasicTest_Data.xml | 310 +++--- examples/qa_BasicTest_Data_extra.xml | 43 + examples/qa_BasicTest_Data_hackrf.xml | 619 ++++++++++++ examples/qa_BasicTest_Data_rtlsdr.xml | 619 ++++++++++++ examples/qa_BasicTest_hackrf.log | 928 ++++++++++++++++++ examples/qa_BasicTest_rtlsdr.log | 114 +++ examples/qa_BasicTest_usrp.log | 114 +++ examples/switchTests.sh | 17 + python/qa_BasicTest_XML.py | 12 +- 16 files changed, 2857 insertions(+), 189 deletions(-) create mode 100644 apps/lora_receive_all.py create mode 100644 examples/__init__.py create mode 100644 examples/lora-whitening/__init__.py delete mode 100644 examples/lora-whitening/runScript.sh create mode 100644 examples/lora-whitening/runSequencer.sh create mode 100644 examples/qa_BasicTest_Data_extra.xml create mode 100644 examples/qa_BasicTest_Data_hackrf.xml create mode 100644 examples/qa_BasicTest_Data_rtlsdr.xml create mode 100644 examples/qa_BasicTest_hackrf.log create mode 100644 examples/qa_BasicTest_rtlsdr.log create mode 100644 examples/qa_BasicTest_usrp.log create mode 100644 examples/switchTests.sh diff --git a/apps/lora_receive_all.py b/apps/lora_receive_all.py new file mode 100644 index 0000000..02d34b7 --- /dev/null +++ b/apps/lora_receive_all.py @@ -0,0 +1,124 @@ +#!/usr/bin/env python2 +# coding=utf8 + +import collections +import os.path +import re + +from gnuradio import gr, blocks +from gnuradio import uhd +import osmosdr +import lora + +LoRaReceiver = collections.namedtuple('LoRaReceiver', ['name', 'available']) + +class LoRaReceiveAll: + def __init__(self, receiver, spreadingFactor = 7, samp_rate = 1e6, capture_freq = 868.0e6, target_freq = 868.1e6): + ################################################## + # Variables # + ################################################## + self.target_freq = target_freq + self.sf = spreadingFactor # 6 7 8 12 + self.samp_rate = samp_rate + self.capture_freq = capture_freq + self.bw = 125e3 + #self.symbols_per_sec = self.bw / (2**self.sf) + self.offset = -(self.capture_freq - self.target_freq) + #self.bitrate = self.sf * (1 / (2**self.sf / self.bw )) + # self.crc = True + # self.pwr = 1 + # self.codingRate = codingRate # 4/5 4/6 4/7 + + ################################################## + # Blocks # + ################################################## + self.tb = gr.top_block () + + self.source = receiver + self.lora_lora_receiver_0 = lora.lora_receiver(self.samp_rate, self.capture_freq, self.offset, self.sf, self.samp_rate) + self.blocks_throttle_0 = blocks.throttle(gr.sizeof_gr_complex*1, self.samp_rate, True) + + self.tb.connect( (self.source, 0), (self.blocks_throttle_0, 0)) + self.tb.connect( (self.blocks_throttle_0, 0), (self.lora_lora_receiver_0, 0)) + + def start(self): + # self.tb.Start(True) + # self.tb.Wait() + self.tb.run() + self.tb = None + + +if __name__ == '__main__': + receivers = [ LoRaReceiver("OsmoSDR/RTL-SDR/HackRF", True), + LoRaReceiver("NI USRP" , True), + LoRaReceiver("Filesource" , True) ] + + print("Configure settings:") + while True: + sf = int(input(" SF: ")) + if sf in range(6, 13): + break + + target_freq = 868.1e6 + samp_rate = 1e6 + capture_freq = 868.0e6 + + print("Available sources:") + for i, r in enumerate(receivers): + if r.available: + print(" {0: 2d}: {1:s}".format(i, r.name)) + + while True: + choice = int(input("Please enter the number for your desired receiver: ")) + if (choice in range(0, len(receivers))) and receivers[choice].available: + break + + receiver = None + + if choice == 0: + # Osmo SDR, RTL-SDR, HackRF + receiver = osmosdr.source( args="numchan=" + str(1) + " " + '' ) + receiver.set_sample_rate(samp_rate) + receiver.set_center_freq(capture_freq, 0) + receiver.set_freq_corr(0, 0) + receiver.set_dc_offset_mode(0, 0) + receiver.set_iq_balance_mode(0, 0) + receiver.set_gain_mode(False, 0) + receiver.set_gain(10, 0) + receiver.set_if_gain(20, 0) + receiver.set_bb_gain(20, 0) + receiver.set_antenna('', 0) + receiver.set_bandwidth(0, 0) + elif choice == 1: + # USRP + address = "" + # while True: + # address = input("Please specify the USRP's IP address: ") + # if re.fullmatch(ur"^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$", address) is not None: + # break + + receiver = uhd.usrp_source( + ",".join((address, "")), + uhd.stream_args( + cpu_format="fc32", + channels=range(1), + ), + ) + receiver.set_samp_rate(samp_rate) + receiver.set_center_freq(capture_freq, 0) + receiver.set_gain(32, 0) + receiver.set_antenna('RX2', 0) + elif choice == 2: + # File + while True: + inputFile = raw_input("Please specify an input file with IQ data: ") + if len(inputFile) > 0 and os.path.isfile(inputFile): + break + receiver = blocks.file_source(gr.sizeof_gr_complex*1, inputFile, False) # Repeat input: True/False + + if receiver is None: + print("Warning: No receiver set!") + exit() + + sdr = LoRaReceiveAll(receiver, sf, samp_rate, capture_freq, target_freq) + sdr.start() diff --git a/examples/__init__.py b/examples/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/examples/_examplify.py b/examples/_examplify.py index 81f159d..4fdda7c 100644 --- a/examples/_examplify.py +++ b/examples/_examplify.py @@ -13,7 +13,7 @@ FileData = collections.namedtuple('FileData', ['path', 'data', 'times']) class Examplify: - def __init__(self, spreadingFactor = 7, codingRate = "4/5", output_dir = './lora-samples/', output_prefix = 'examplify_data'): + def __init__(self, spreadingFactor = 7, codingRate = "4/5", output_dir = './lora-samples/', output_prefix = 'examplify_data', gains = [10, 20, 20]): ################################################## # Variables # ################################################## @@ -70,12 +70,16 @@ class Examplify: self.osmosdr_source_0.set_dc_offset_mode(0, 0) self.osmosdr_source_0.set_iq_balance_mode(0, 0) self.osmosdr_source_0.set_gain_mode(False, 0) - self.osmosdr_source_0.set_gain(10, 0) - self.osmosdr_source_0.set_if_gain(20, 0) - self.osmosdr_source_0.set_bb_gain(20, 0) + self.osmosdr_source_0.set_gain(gains[0], 0) + self.osmosdr_source_0.set_if_gain(gains[1], 0) + self.osmosdr_source_0.set_bb_gain(gains[2], 0) self.osmosdr_source_0.set_antenna('', 0) self.osmosdr_source_0.set_bandwidth(0, 0) + def __del__(self): + self.lc = None + self.tb = None + def setPreDelay(self, delay_s): self.pre_delay = delay_s @@ -120,14 +124,14 @@ class Examplify: self.transmitToCapture(data_list) self.outputFile = prev - def appendAndCaptureExample(self, data, times): + def appendAndCaptureExample(self, data, times, idx = 0): name = (self.output_prefix + "_cr{0:s}_bw{1:d}_sf{2:d}_crc{3:d}_pwr{4:d}_{5:03d}" .format(self.codingRate.replace("/", "-"), int(self.bw / 1e3), self.sf, 1 if self.crc else 0, self.pwr, - len(self.examples_output)) + len(self.examples_output) if idx == 0 else (idx - 1)) + self.output_ext) self.examples_output.append( FileData( name, '["{0:s}"]'.format(data), times ) ) @@ -151,24 +155,87 @@ class Examplify: f.close() + def appendToXML(self, file_path, idx = 0): + # To xml + # f = open("qa_BasicTest_Data_" + self.output_prefix + ".xml", 'w') + # f.write('\n\n'.format(self.output_prefix)) + + f = open(file_path, 'a') + + for i, x in enumerate(self.examples_output): + f.write(' \n'.format(idx if idx > 0 else (i+1))) + f.write(' ../../examples/lora-samples/{0:s}\n'.format(x[0])) + f.write(' {0:d}\n'.format(self.sf)) + f.write(' \n \n') + f.write(' {0:s}\n' + .format(' '.join([ x[1][2:-2][i:i+2] for i in range(0, len(x[1][2:-2]), 2) ]))) + f.write(' {0:d}\n'.format(x[2])) + f.write(' \n') + # f.write('') + f.close() + if __name__ == '__main__': - e = Examplify(6, "4/7", './lora-samples/', 'hackrf') + # e = Examplify(7, "4/6", './lora-samples/', '2345') + # + # e.appendAndCaptureExample("0123456789abcdef", 10) + # + # e.appendAndCaptureExample("111111", 1) + # e.appendAndCaptureExample("111111", 5) + # + # e.appendAndCaptureExample("aaaaaaaa", 3) + # + # e.appendAndCaptureExample("ffffffff", 1) + # e.appendAndCaptureExample("ffffffff", 10) + # + # e.appendAndCaptureExample("55555555", 3) + # e.appendAndCaptureExample("55555555", 10) + # + # e.appendAndCaptureExample("88888888", 1) + # e.appendAndCaptureExample("88888888", 5) + # e.appendAndCaptureExample("88888888", 10) - e.appendAndCaptureExample("0123456789abcdef", 10) + # e.appendResultsToFile('./expected_results.txt') - e.appendAndCaptureExample("111111", 1) - e.appendAndCaptureExample("111111", 5) + exampledir = "./lora-samples/" + testprefix = "usrp" + xmlfiledir = "./qa_BasicTest_Data_" + testprefix + ".xml" + gains = [32, 38, 38] # [10, 20, 20], for usrp: [32, 38, 38] + idx = 1 - e.appendAndCaptureExample("aaaaaaaa", 3) + f = open(xmlfiledir, 'w') + f.write('\n\n'.format(testprefix)) + f.close() - e.appendAndCaptureExample("ffffffff", 1) - e.appendAndCaptureExample("ffffffff", 10) + sampleset = [ ( 7, "4/5", 1), + ( 8, "4/5", 1), + (12, "4/5", 1), + ( 6, "4/7", 1), + ( 7, "4/7", 1), + ( 6, "4/6", 1), + ( 7, "4/6", 1) + ] + testset = [ ("0123456789abcdef", 10), + ("111111", 1), + ("111111", 5), + ("aaaaaaaa", 3), + ("ffffffff", 1), + ("ffffffff", 10), + ("55555555", 3), + ("55555555", 10), + ("88888888", 1), + ("88888888", 5), + ("88888888", 10) + ] - e.appendAndCaptureExample("55555555", 3) - e.appendAndCaptureExample("55555555", 10) + for t in testset: + for i, s in enumerate(sampleset): + e = Examplify(s[0], s[1], exampledir, testprefix, gains) + e.appendAndCaptureExample(t[0], t[1], s[2]) + e.appendToXML(xmlfiledir, idx) + e = None + sampleset[i] = (s[0], s[1], s[2] + 1) + idx = idx + 1 - e.appendAndCaptureExample("88888888", 1) - e.appendAndCaptureExample("88888888", 5) - e.appendAndCaptureExample("88888888", 10) - - e.appendResultsToFile('./expected_results.txt') + f = open(xmlfiledir, 'a') + f.write('\n') + f.close() diff --git a/examples/lora-whitening/__init__.py b/examples/lora-whitening/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/examples/lora-whitening/createWhiteningValues.py b/examples/lora-whitening/createWhiteningValues.py index a8cf11a..7f1e174 100644 --- a/examples/lora-whitening/createWhiteningValues.py +++ b/examples/lora-whitening/createWhiteningValues.py @@ -3,7 +3,11 @@ import collections import os from loranode import RN2483Controller -from ../_examplify.py import Examplify +# from ../_examplify.py import Examplify + +import os +os.sys.path.append(os.path.dirname(os.path.abspath('.'))) +from _examplify import Examplify import lora, pmt, osmosdr from gnuradio import gr, blocks @@ -43,7 +47,7 @@ class ReceiveWhitening: if os.path.isfile(self.outputFile): inf = open(self.tempFile, 'r') seq = inf.read() - print(seq) + # print(seq) out = open(self.outputFile, 'a') out.write(seq) out.close() @@ -56,10 +60,26 @@ class ReceiveWhitening: raise Exception("[ReceiveWhitening] Inputfile '" + self.inputFile + "' does not exist!") if __name__ == '__main__': - ofile = 'tmp/tmp_whitening.cfile' + ofile = '/tmp/tmp_whitening.cfile' - examplifr = Examplify(7, "4/7") - whitening = ReceiveWhitening(7, './test_out.csv') + testset = [ (7, "4/6"), (7, "4/7"), (8, "4/5"), (12, "4/6"), (9, "4/5"), (10, "4/5"), (11, "4/5"), (6, "4/5")] - examplifr.transmitToFile(["00000000000"] * 10, ofile) - whitening.captureSequence(ofile) + for settings in testset: + dataf = './test_out_SF{0:d}_CR{1:s}.csv'.format(settings[0], '-'.join(settings[1].split('/'))) + out = open(dataf, 'a') + out.close() + + examplifr = Examplify(settings[0], settings[1], gains = [32, 38, 38]) + whitening = ReceiveWhitening(settings[0], dataf) + + for i in range(8): + print("Sample {0:d} of 16".format(i)) + examplifr.transmitToFile(['0' * 256] * 4, ofile) + whitening.captureSequence(ofile) + for i in range(8): + print("Sample {0:d} of 16".format(i + 8)) + examplifr.transmitToFile(['0' * 256] * 8, ofile) + whitening.captureSequence(ofile) + + examplifr = None + whitening = None diff --git a/examples/lora-whitening/runScript.sh b/examples/lora-whitening/runScript.sh deleted file mode 100644 index 4e3567b..0000000 --- a/examples/lora-whitening/runScript.sh +++ /dev/null @@ -1,4 +0,0 @@ -# Uses lora-whitening-sequencer from: -# https://github.com/Wosser1sProductions/gr-lora-whitening-sequencer - -./lora-whitening-sequencer -sf 7 -in ./test_out.csv diff --git a/examples/lora-whitening/runSequencer.sh b/examples/lora-whitening/runSequencer.sh new file mode 100644 index 0000000..14e9a63 --- /dev/null +++ b/examples/lora-whitening/runSequencer.sh @@ -0,0 +1 @@ +./lora-whitening-sequencer -sf 7 -in ./test_out.csv diff --git a/examples/qa_BasicTest_Data.xml b/examples/qa_BasicTest_Data.xml index 7e4f99f..7d7056b 100644 --- a/examples/qa_BasicTest_Data.xml +++ b/examples/qa_BasicTest_Data.xml @@ -1,618 +1,618 @@ - + - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_000.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf7_crc1_pwr1_000.cfile 7 - + 01 23 45 67 89 ab cd ef 10 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_000.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf8_crc1_pwr1_000.cfile 8 - + 01 23 45 67 89 ab cd ef 10 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_000.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf12_crc1_pwr1_000.cfile 12 - + 01 23 45 67 89 ab cd ef 10 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_000.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf6_crc1_pwr1_000.cfile 6 - + 01 23 45 67 89 ab cd ef 10 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_000.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf7_crc1_pwr1_000.cfile 7 - + 01 23 45 67 89 ab cd ef 10 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_000.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf6_crc1_pwr1_000.cfile 6 - + 01 23 45 67 89 ab cd ef 10 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_000.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf7_crc1_pwr1_000.cfile 7 - + 01 23 45 67 89 ab cd ef 10 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_001.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf7_crc1_pwr1_001.cfile 7 - + 11 11 11 1 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_001.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf8_crc1_pwr1_001.cfile 8 - + 11 11 11 1 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_001.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf12_crc1_pwr1_001.cfile 12 - + 11 11 11 1 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_001.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf6_crc1_pwr1_001.cfile 6 - + 11 11 11 1 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_001.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf7_crc1_pwr1_001.cfile 7 - + 11 11 11 1 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_001.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf6_crc1_pwr1_001.cfile 6 - + 11 11 11 1 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_001.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf7_crc1_pwr1_001.cfile 7 - + 11 11 11 1 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_002.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf7_crc1_pwr1_002.cfile 7 - + 11 11 11 5 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_002.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf8_crc1_pwr1_002.cfile 8 - + 11 11 11 5 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_002.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf12_crc1_pwr1_002.cfile 12 - + 11 11 11 5 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_002.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf6_crc1_pwr1_002.cfile 6 - + 11 11 11 5 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_002.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf7_crc1_pwr1_002.cfile 7 - + 11 11 11 5 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_002.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf6_crc1_pwr1_002.cfile 6 - + 11 11 11 5 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_002.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf7_crc1_pwr1_002.cfile 7 - + 11 11 11 5 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_003.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf7_crc1_pwr1_003.cfile 7 - + aa aa aa aa 3 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_003.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf8_crc1_pwr1_003.cfile 8 - + aa aa aa aa 3 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_003.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf12_crc1_pwr1_003.cfile 12 - + aa aa aa aa 3 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_003.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf6_crc1_pwr1_003.cfile 6 - + aa aa aa aa 3 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_003.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf7_crc1_pwr1_003.cfile 7 - + aa aa aa aa 3 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_003.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf6_crc1_pwr1_003.cfile 6 - + aa aa aa aa 3 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_003.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf7_crc1_pwr1_003.cfile 7 - + aa aa aa aa 3 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_004.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf7_crc1_pwr1_004.cfile 7 - + ff ff ff ff 1 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_004.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf8_crc1_pwr1_004.cfile 8 - + ff ff ff ff 1 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_004.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf12_crc1_pwr1_004.cfile 12 - + ff ff ff ff 1 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_004.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf6_crc1_pwr1_004.cfile 6 - + ff ff ff ff 1 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_004.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf7_crc1_pwr1_004.cfile 7 - + ff ff ff ff 1 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_004.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf6_crc1_pwr1_004.cfile 6 - + ff ff ff ff 1 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_004.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf7_crc1_pwr1_004.cfile 7 - + ff ff ff ff 1 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_005.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf7_crc1_pwr1_005.cfile 7 - + ff ff ff ff 10 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_005.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf8_crc1_pwr1_005.cfile 8 - + ff ff ff ff 10 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_005.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf12_crc1_pwr1_005.cfile 12 - + ff ff ff ff 10 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_005.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf6_crc1_pwr1_005.cfile 6 - + ff ff ff ff 10 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_005.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf7_crc1_pwr1_005.cfile 7 - + ff ff ff ff 10 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_005.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf6_crc1_pwr1_005.cfile 6 - + ff ff ff ff 10 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_005.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf7_crc1_pwr1_005.cfile 7 - + ff ff ff ff 10 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_006.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf7_crc1_pwr1_006.cfile 7 - + 55 55 55 55 3 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_006.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf8_crc1_pwr1_006.cfile 8 - + 55 55 55 55 3 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_006.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf12_crc1_pwr1_006.cfile 12 - + 55 55 55 55 3 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_006.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf6_crc1_pwr1_006.cfile 6 - + 55 55 55 55 3 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_006.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf7_crc1_pwr1_006.cfile 7 - + 55 55 55 55 3 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_006.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf6_crc1_pwr1_006.cfile 6 - + 55 55 55 55 3 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_006.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf7_crc1_pwr1_006.cfile 7 - + 55 55 55 55 3 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_007.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf7_crc1_pwr1_007.cfile 7 - + 55 55 55 55 10 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_007.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf8_crc1_pwr1_007.cfile 8 - + 55 55 55 55 10 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_007.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf12_crc1_pwr1_007.cfile 12 - + 55 55 55 55 10 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_007.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf6_crc1_pwr1_007.cfile 6 - + 55 55 55 55 10 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_007.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf7_crc1_pwr1_007.cfile 7 - + 55 55 55 55 10 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_007.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf6_crc1_pwr1_007.cfile 6 - + 55 55 55 55 10 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_007.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf7_crc1_pwr1_007.cfile 7 - + 55 55 55 55 10 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_008.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf7_crc1_pwr1_008.cfile 7 - + 88 88 88 88 1 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_008.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf8_crc1_pwr1_008.cfile 8 - + 88 88 88 88 1 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_008.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf12_crc1_pwr1_008.cfile 12 - + 88 88 88 88 1 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_008.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf6_crc1_pwr1_008.cfile 6 - + 88 88 88 88 1 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_008.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf7_crc1_pwr1_008.cfile 7 - + 88 88 88 88 1 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_008.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf6_crc1_pwr1_008.cfile 6 - + 88 88 88 88 1 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_008.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf7_crc1_pwr1_008.cfile 7 - + 88 88 88 88 1 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_009.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf7_crc1_pwr1_009.cfile 7 - + 88 88 88 88 5 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_009.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf8_crc1_pwr1_009.cfile 8 - + 88 88 88 88 5 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_009.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf12_crc1_pwr1_009.cfile 12 - + 88 88 88 88 5 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_009.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf6_crc1_pwr1_009.cfile 6 - + 88 88 88 88 5 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_009.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf7_crc1_pwr1_009.cfile 7 - + 88 88 88 88 5 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_009.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf6_crc1_pwr1_009.cfile 6 - + 88 88 88 88 5 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_009.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf7_crc1_pwr1_009.cfile 7 - + 88 88 88 88 5 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_010.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf7_crc1_pwr1_010.cfile 7 - + 88 88 88 88 10 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_010.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf8_crc1_pwr1_010.cfile 8 - + 88 88 88 88 10 - ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_010.cfile + ../../examples/lora-samples/usrp_cr4-5_bw125_sf12_crc1_pwr1_010.cfile 12 - + 88 88 88 88 10 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_010.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf6_crc1_pwr1_010.cfile 6 - + 88 88 88 88 10 - ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_010.cfile + ../../examples/lora-samples/usrp_cr4-7_bw125_sf7_crc1_pwr1_010.cfile 7 - + 88 88 88 88 10 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_010.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf6_crc1_pwr1_010.cfile 6 - + 88 88 88 88 10 - ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_010.cfile + ../../examples/lora-samples/usrp_cr4-6_bw125_sf7_crc1_pwr1_010.cfile 7 - + 88 88 88 88 10 diff --git a/examples/qa_BasicTest_Data_extra.xml b/examples/qa_BasicTest_Data_extra.xml new file mode 100644 index 0000000..f70be5d --- /dev/null +++ b/examples/qa_BasicTest_Data_extra.xml @@ -0,0 +1,43 @@ + + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_000.cfile + 8 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_000.cfile + 6 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_000.cfile + 7 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_000.cfile + 7 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_009.cfile + 12 + + + 88 88 88 88 + 5 + + diff --git a/examples/qa_BasicTest_Data_hackrf.xml b/examples/qa_BasicTest_Data_hackrf.xml new file mode 100644 index 0000000..48442f1 --- /dev/null +++ b/examples/qa_BasicTest_Data_hackrf.xml @@ -0,0 +1,619 @@ + + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_000.cfile + 7 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_000.cfile + 8 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_000.cfile + 12 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_000.cfile + 6 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_000.cfile + 7 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_000.cfile + 6 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_000.cfile + 7 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_001.cfile + 7 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_001.cfile + 8 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_001.cfile + 12 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_001.cfile + 6 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_001.cfile + 7 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_001.cfile + 6 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_001.cfile + 7 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_002.cfile + 7 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_002.cfile + 8 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_002.cfile + 12 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_002.cfile + 6 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_002.cfile + 7 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_002.cfile + 6 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_002.cfile + 7 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_003.cfile + 7 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_003.cfile + 8 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_003.cfile + 12 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_003.cfile + 6 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_003.cfile + 7 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_003.cfile + 6 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_003.cfile + 7 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_004.cfile + 7 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_004.cfile + 8 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_004.cfile + 12 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_004.cfile + 6 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_004.cfile + 7 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_004.cfile + 6 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_004.cfile + 7 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_005.cfile + 7 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_005.cfile + 8 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_005.cfile + 12 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_005.cfile + 6 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_005.cfile + 7 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_005.cfile + 6 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_005.cfile + 7 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_006.cfile + 7 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_006.cfile + 8 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_006.cfile + 12 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_006.cfile + 6 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_006.cfile + 7 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_006.cfile + 6 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_006.cfile + 7 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_007.cfile + 7 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_007.cfile + 8 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_007.cfile + 12 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_007.cfile + 6 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_007.cfile + 7 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_007.cfile + 6 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_007.cfile + 7 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_008.cfile + 7 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_008.cfile + 8 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_008.cfile + 12 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_008.cfile + 6 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_008.cfile + 7 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_008.cfile + 6 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_008.cfile + 7 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_009.cfile + 7 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_009.cfile + 8 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_009.cfile + 12 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_009.cfile + 6 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_009.cfile + 7 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_009.cfile + 6 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_009.cfile + 7 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf7_crc1_pwr1_010.cfile + 7 + + + 88 88 88 88 + 10 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf8_crc1_pwr1_010.cfile + 8 + + + 88 88 88 88 + 10 + + + ../../examples/lora-samples/hackrf_cr4-5_bw125_sf12_crc1_pwr1_010.cfile + 12 + + + 88 88 88 88 + 10 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf6_crc1_pwr1_010.cfile + 6 + + + 88 88 88 88 + 10 + + + ../../examples/lora-samples/hackrf_cr4-7_bw125_sf7_crc1_pwr1_010.cfile + 7 + + + 88 88 88 88 + 10 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf6_crc1_pwr1_010.cfile + 6 + + + 88 88 88 88 + 10 + + + ../../examples/lora-samples/hackrf_cr4-6_bw125_sf7_crc1_pwr1_010.cfile + 7 + + + 88 88 88 88 + 10 + + diff --git a/examples/qa_BasicTest_Data_rtlsdr.xml b/examples/qa_BasicTest_Data_rtlsdr.xml new file mode 100644 index 0000000..9416999 --- /dev/null +++ b/examples/qa_BasicTest_Data_rtlsdr.xml @@ -0,0 +1,619 @@ + + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf7_crc1_pwr1_000.cfile + 7 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf8_crc1_pwr1_000.cfile + 8 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf12_crc1_pwr1_000.cfile + 12 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf6_crc1_pwr1_000.cfile + 6 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf7_crc1_pwr1_000.cfile + 7 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf6_crc1_pwr1_000.cfile + 6 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf7_crc1_pwr1_000.cfile + 7 + + + 01 23 45 67 89 ab cd ef + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf7_crc1_pwr1_001.cfile + 7 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf8_crc1_pwr1_001.cfile + 8 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf12_crc1_pwr1_001.cfile + 12 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf6_crc1_pwr1_001.cfile + 6 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf7_crc1_pwr1_001.cfile + 7 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf6_crc1_pwr1_001.cfile + 6 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf7_crc1_pwr1_001.cfile + 7 + + + 11 11 11 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf7_crc1_pwr1_002.cfile + 7 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf8_crc1_pwr1_002.cfile + 8 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf12_crc1_pwr1_002.cfile + 12 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf6_crc1_pwr1_002.cfile + 6 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf7_crc1_pwr1_002.cfile + 7 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf6_crc1_pwr1_002.cfile + 6 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf7_crc1_pwr1_002.cfile + 7 + + + 11 11 11 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf7_crc1_pwr1_003.cfile + 7 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf8_crc1_pwr1_003.cfile + 8 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf12_crc1_pwr1_003.cfile + 12 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf6_crc1_pwr1_003.cfile + 6 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf7_crc1_pwr1_003.cfile + 7 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf6_crc1_pwr1_003.cfile + 6 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf7_crc1_pwr1_003.cfile + 7 + + + aa aa aa aa + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf7_crc1_pwr1_004.cfile + 7 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf8_crc1_pwr1_004.cfile + 8 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf12_crc1_pwr1_004.cfile + 12 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf6_crc1_pwr1_004.cfile + 6 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf7_crc1_pwr1_004.cfile + 7 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf6_crc1_pwr1_004.cfile + 6 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf7_crc1_pwr1_004.cfile + 7 + + + ff ff ff ff + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf7_crc1_pwr1_005.cfile + 7 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf8_crc1_pwr1_005.cfile + 8 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf12_crc1_pwr1_005.cfile + 12 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf6_crc1_pwr1_005.cfile + 6 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf7_crc1_pwr1_005.cfile + 7 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf6_crc1_pwr1_005.cfile + 6 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf7_crc1_pwr1_005.cfile + 7 + + + ff ff ff ff + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf7_crc1_pwr1_006.cfile + 7 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf8_crc1_pwr1_006.cfile + 8 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf12_crc1_pwr1_006.cfile + 12 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf6_crc1_pwr1_006.cfile + 6 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf7_crc1_pwr1_006.cfile + 7 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf6_crc1_pwr1_006.cfile + 6 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf7_crc1_pwr1_006.cfile + 7 + + + 55 55 55 55 + 3 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf7_crc1_pwr1_007.cfile + 7 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf8_crc1_pwr1_007.cfile + 8 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf12_crc1_pwr1_007.cfile + 12 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf6_crc1_pwr1_007.cfile + 6 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf7_crc1_pwr1_007.cfile + 7 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf6_crc1_pwr1_007.cfile + 6 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf7_crc1_pwr1_007.cfile + 7 + + + 55 55 55 55 + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf7_crc1_pwr1_008.cfile + 7 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf8_crc1_pwr1_008.cfile + 8 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf12_crc1_pwr1_008.cfile + 12 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf6_crc1_pwr1_008.cfile + 6 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf7_crc1_pwr1_008.cfile + 7 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf6_crc1_pwr1_008.cfile + 6 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf7_crc1_pwr1_008.cfile + 7 + + + 88 88 88 88 + 1 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf7_crc1_pwr1_009.cfile + 7 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf8_crc1_pwr1_009.cfile + 8 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf12_crc1_pwr1_009.cfile + 12 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf6_crc1_pwr1_009.cfile + 6 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf7_crc1_pwr1_009.cfile + 7 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf6_crc1_pwr1_009.cfile + 6 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf7_crc1_pwr1_009.cfile + 7 + + + 88 88 88 88 + 5 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf7_crc1_pwr1_010.cfile + 7 + + + 88 88 88 88 + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf8_crc1_pwr1_010.cfile + 8 + + + 88 88 88 88 + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-5_bw125_sf12_crc1_pwr1_010.cfile + 12 + + + 88 88 88 88 + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf6_crc1_pwr1_010.cfile + 6 + + + 88 88 88 88 + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-7_bw125_sf7_crc1_pwr1_010.cfile + 7 + + + 88 88 88 88 + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf6_crc1_pwr1_010.cfile + 6 + + + 88 88 88 88 + 10 + + + ../../examples/lora-samples/rtlsdr_cr4-6_bw125_sf7_crc1_pwr1_010.cfile + 7 + + + 88 88 88 88 + 10 + + diff --git a/examples/qa_BasicTest_hackrf.log b/examples/qa_BasicTest_hackrf.log new file mode 100644 index 0000000..e10e296 --- /dev/null +++ b/examples/qa_BasicTest_hackrf.log @@ -0,0 +1,928 @@ +-------- Test Results on 2017-02-23 09:49:52 --------- + ====== Total passed: 75 out of 413 (18.16%) ====== +Ran 1 test in 613.894s + +-------- Test Results on 2017-02-23 17:27:48 --------- +Test serie 0: [u'01 23 45 67 89 ab cd ef'] * 10 + Test 1 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 5 out of 10 ( 50.00%) + Test 2 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 3 out of 10 ( 30.00%) + Test 3 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 4 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 5 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 4 out of 10 ( 40.00%) + Test 6 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 7 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 2 out of 10 ( 20.00%) + => Total passed: 14 out of 70 (20.00%) + +Test serie 1: [u'11 11 11'] * 1 + Test 8 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 9 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 10 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 11 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 12 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 13 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 14 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + => Total passed: 2 out of 7 (28.57%) + +Test serie 2: [u'11 11 11'] * 5 + Test 15 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 3 out of 5 ( 60.00%) + Test 16 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 2 out of 5 ( 40.00%) + Test 17 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 18 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 19 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 2 out of 5 ( 40.00%) + Test 20 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 21 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + => Total passed: 8 out of 35 (22.86%) + +Test serie 3: [u'aa aa aa aa'] * 3 + Test 22 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 3 ( 33.33%) + Test 23 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 3 ( 33.33%) + Test 24 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 25 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 26 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 27 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 28 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 3 ( 33.33%) + => Total passed: 3 out of 21 (14.29%) + +Test serie 4: [u'ff ff ff ff'] * 1 + Test 29 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 30 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 31 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 32 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 33 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 34 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 35 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 2 out of 7 (28.57%) + +Test serie 5: [u'ff ff ff ff'] * 10 + Test 36 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 2 out of 10 ( 20.00%) + Test 37 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 5 out of 10 ( 50.00%) + Test 38 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 39 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 40 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 41 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 42 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 10 ( 30.00%) + => Total passed: 10 out of 70 (14.29%) + +Test serie 6: [u'55 55 55 55'] * 3 + Test 43 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 3 ( 33.33%) + Test 44 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 3 ( 33.33%) + Test 45 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 46 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 47 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 1 out of 3 ( 33.33%) + Test 48 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 49 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + => Total passed: 3 out of 21 (14.29%) + +Test serie 7: [u'55 55 55 55'] * 10 + Test 50 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 2 out of 10 ( 20.00%) + Test 51 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 4 out of 10 ( 40.00%) + Test 52 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 53 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 54 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 5 out of 10 ( 50.00%) + Test 55 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 56 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 10 ( 30.00%) + => Total passed: 14 out of 70 (20.00%) + +Test serie 8: [u'88 88 88 88'] * 1 + Test 57 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 58 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 59 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 60 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 61 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 62 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 63 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 2 out of 7 (28.57%) + +Test serie 9: [u'88 88 88 88'] * 5 + Test 61 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 2 out of 5 ( 40.00%) + Test 62 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 2 out of 5 ( 40.00%) + Test 63 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + Test 64 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 65 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 66 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 67 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + => Total passed: 6 out of 35 (17.14%) + +Test serie 10: [u'88 88 88 88'] * 10 + Test 68 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 5 out of 10 ( 50.00%) + Test 69 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 2 out of 10 ( 20.00%) + Test 70 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 71 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 72 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 73 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 74 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 4 out of 10 ( 40.00%) + => Total passed: 11 out of 70 (15.71%) + + + ====== Total passed: 75 out of 413 (18.16%) ====== +Ran 1 test in 612.239s + + +-------- Test Results on 2017-02-27 15:38:54 --------- +Test serie 0: [u'01 23 45 67 89 ab cd ef'] * 10 + Test 1 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 6 out of 10 ( 60.00%) +1 + Test 2 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 6 out of 10 ( 60.00%) +3 + Test 3 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 4 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 5 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) +4 + Test 6 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 7 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) +5 + => Total passed: 27 out of 70 (38.57%) + +Test serie 1: [u'11 11 11'] * 1 + Test 8 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 9 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 10 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 11 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 12 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) +1 + Test 13 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 14 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) +1 + => Total passed: 4 out of 7 (57.14%) + +Test serie 2: [u'11 11 11'] * 5 + Test 15 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 3 out of 5 ( 60.00%) + Test 16 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) +2 + Test 17 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 18 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 19 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) +3 + Test 20 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 21 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) +4 + => Total passed: 13 out of 35 (37.14%) + +Test serie 3: [u'aa aa aa aa'] * 3 + Test 22 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) +1 + Test 23 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 3 out of 3 (100.00%) +2 + Test 24 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 25 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 26 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) +2 + Test 27 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 28 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) +2 + => Total passed: 10 out of 21 (47.62%) + +Test serie 4: [u'ff ff ff ff'] * 1 + Test 29 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) +1 + Test 30 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) -1 + Test 31 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 32 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 33 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 34 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 35 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 2 out of 7 (28.57%) + +Test serie 5: [u'ff ff ff ff'] * 10 + Test 36 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) +6 + Test 37 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 6 out of 10 ( 60.00%) +1 + Test 38 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 39 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 40 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 41 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 42 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) +6 + => Total passed: 23 out of 70 (32.86%) + +Test serie 6: [u'55 55 55 55'] * 3 + Test 43 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) -2 + Test 44 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 3 ( 33.33%) + Test 45 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 46 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 47 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) +1 + Test 48 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 49 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) +3 + => Total passed: 9 out of 21 (42.86%) + +Test serie 7: [u'55 55 55 55'] * 10 + Test 50 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) +6 + Test 51 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) +4 + Test 52 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 53 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 54 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) +3 + Test 55 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 56 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) +7 + => Total passed: 34 out of 70 (48.57%) + +Test serie 8: [u'88 88 88 88'] * 1 + Test 57 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 58 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) -1 + Test 59 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 60 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 61 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 62 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 63 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 2 out of 7 (28.57%) + +Test serie 9: [u'88 88 88 88'] * 5 + Test 64 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) +2 + Test 65 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 5 out of 5 (100.00%) +3 + Test 66 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) -1 + Test 67 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 68 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 69 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 70 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) +4 + => Total passed: 14 out of 35 (40.00%) + +Test serie 10: [u'88 88 88 88'] * 10 + Test 71 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 6 out of 10 ( 60.00%) +1 + Test 72 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) +6 + Test 73 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 74 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 75 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 76 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 77 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) +6 + => Total passed: 24 out of 70 (34.29%) + + + ====== Total passed: 162 out of 413 (39.23%) ====== +Ran 1 test in 490.191s + +-------- Test Results on 2017-03-06 11:41:54 --------- +Test serie 0: [u'01 23 45 67 89 ab cd ef'] * 10 + Test 1 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 2 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 4 out of 10 ( 40.00%) + Test 3 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 4 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 5 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 6 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 7 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 6 out of 10 ( 60.00%) + => Total passed: 24 out of 70 (34.29%) + +Test serie 1: [u'11 11 11'] * 1 + Test 8 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 9 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 10 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 11 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 12 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 13 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 14 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + => Total passed: 3 out of 7 (42.86%) + +Test serie 2: [u'11 11 11'] * 5 + Test 15 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + Test 16 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 17 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 18 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 19 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 2 out of 5 ( 40.00%) + Test 20 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 21 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + => Total passed: 4 out of 35 (11.43%) + +Test serie 3: [u'aa aa aa aa'] * 3 + Test 22 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 3 ( 33.33%) + Test 23 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 24 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 25 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 26 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 27 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 28 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 3 ( 33.33%) + => Total passed: 7 out of 21 (33.33%) + +Test serie 4: [u'ff ff ff ff'] * 1 + Test 29 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 30 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 31 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 32 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 33 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 34 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 35 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 1 out of 7 (14.29%) + +Test serie 5: [u'ff ff ff ff'] * 10 + Test 36 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 4 out of 10 ( 40.00%) + Test 37 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) + Test 38 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 39 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 40 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 41 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 42 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 6 out of 10 ( 60.00%) + => Total passed: 19 out of 70 (27.14%) + +Test serie 6: [u'55 55 55 55'] * 3 + Test 43 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 44 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 45 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 46 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 47 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 48 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 49 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + => Total passed: 7 out of 21 (33.33%) + +Test serie 7: [u'55 55 55 55'] * 10 + Test 50 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) + Test 51 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 6 out of 10 ( 60.00%) + Test 52 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 53 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 54 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 3 out of 10 ( 30.00%) + Test 55 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 56 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 10 ( 30.00%) + => Total passed: 22 out of 70 (31.43%) + +Test serie 8: [u'88 88 88 88'] * 1 + Test 57 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 58 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 59 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 60 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 61 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 62 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 63 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 1 out of 7 (14.29%) + +Test serie 9: [u'88 88 88 88'] * 5 + Test 64 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 2 out of 5 ( 40.00%) + Test 65 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 66 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 67 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 68 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 69 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 70 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 5 ( 60.00%) + => Total passed: 9 out of 35 (25.71%) + +Test serie 10: [u'88 88 88 88'] * 10 + Test 71 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 4 out of 10 ( 40.00%) + Test 72 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 73 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 74 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 75 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 76 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 77 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) + => Total passed: 21 out of 70 (30.00%) + + + ====== Total passed: 118 out of 413 (28.57%) ====== +Ran 1 test in 349.914s + + +-------- Test Results on 2017-03-06 14:41:02 --------- +Test serie 0: [u'01 23 45 67 89 ab cd ef'] * 10 + Test 1 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 2 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 4 out of 10 ( 40.00%) + Test 3 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 4 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 5 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) + Test 6 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 7 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 6 out of 10 ( 60.00%) + => Total passed: 25 out of 70 (35.71%) + +Test serie 1: [u'11 11 11'] * 1 + Test 8 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 9 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 10 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 11 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 12 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 13 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 14 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 4 out of 7 (57.14%) + +Test serie 2: [u'11 11 11'] * 5 + Test 15 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 16 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 5 out of 5 (100.00%) + Test 17 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 18 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 19 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 20 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 21 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + => Total passed: 17 out of 35 (48.57%) + +Test serie 3: [u'aa aa aa aa'] * 3 + Test 22 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 3 ( 33.33%) + Test 23 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 24 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 25 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 26 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 27 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 28 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + => Total passed: 9 out of 21 (42.86%) + +Test serie 4: [u'ff ff ff ff'] * 1 + Test 29 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 30 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 31 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 32 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 33 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 34 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 35 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 2 out of 7 (28.57%) + +Test serie 5: [u'ff ff ff ff'] * 10 + Test 36 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) + Test 37 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 38 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 39 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 40 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 41 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 42 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) + => Total passed: 25 out of 70 (35.71%) + +Test serie 6: [u'55 55 55 55'] * 3 + Test 43 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 44 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 3 ( 33.33%) + Test 45 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 46 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 47 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 48 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 49 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + => Total passed: 9 out of 21 (42.86%) + +Test serie 7: [u'55 55 55 55'] * 10 + Test 50 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) + Test 51 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) + Test 52 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 53 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 54 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 5 out of 10 ( 50.00%) + Test 55 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 56 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + => Total passed: 31 out of 70 (44.29%) + +Test serie 8: [u'88 88 88 88'] * 1 + Test 57 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 58 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 59 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 60 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 61 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 62 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 63 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 1 out of 7 (14.29%) + +Test serie 9: [u'88 88 88 88'] * 5 + Test 64 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 2 out of 5 ( 40.00%) + Test 65 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 66 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + Test 67 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 68 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 69 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 70 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) + => Total passed: 12 out of 35 (34.29%) + +Test serie 10: [u'88 88 88 88'] * 10 + Test 71 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) + Test 72 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 73 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 74 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 75 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 76 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 77 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) + => Total passed: 25 out of 70 (35.71%) + + + ====== Total passed: 160 out of 413 (38.74%) ====== +Ran 1 test in 405.855s + + +-------- Test Results on 2017-03-08 16:50:19 --------- +Test serie 0: [u'01 23 45 67 89 ab cd ef'] * 10 + Test 1 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 2 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 3 out of 10 ( 30.00%) + Test 3 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 4 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 5 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 6 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 7 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 5 out of 10 ( 50.00%) + => Total passed: 22 out of 70 (31.43%) + +Test serie 1: [u'11 11 11'] * 1 + Test 8 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 9 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 10 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 11 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 12 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 13 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 14 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 4 out of 7 (57.14%) + +Test serie 2: [u'11 11 11'] * 5 + Test 15 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 3 out of 5 ( 60.00%) + Test 16 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + Test 17 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 18 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 19 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 20 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 21 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + => Total passed: 12 out of 35 (34.29%) + +Test serie 3: [u'aa aa aa aa'] * 3 + Test 22 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 23 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 24 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 25 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 26 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 27 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 28 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + => Total passed: 7 out of 21 (33.33%) + +Test serie 4: [u'ff ff ff ff'] * 1 + Test 29 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 30 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 31 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 32 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 33 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 34 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 35 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 3 out of 7 (42.86%) + +Test serie 5: [u'ff ff ff ff'] * 10 + Test 36 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) + Test 37 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 5 out of 10 ( 50.00%) + Test 38 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 39 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 40 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 41 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 42 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + => Total passed: 20 out of 70 (28.57%) + +Test serie 6: [u'55 55 55 55'] * 3 + Test 43 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 44 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 45 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 46 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 47 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 48 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 49 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + => Total passed: 9 out of 21 (42.86%) + +Test serie 7: [u'55 55 55 55'] * 10 + Test 50 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) + Test 51 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 5 out of 10 ( 50.00%) + Test 52 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 53 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 54 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) + Test 55 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 56 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + => Total passed: 29 out of 70 (41.43%) + +Test serie 8: [u'88 88 88 88'] * 1 + Test 57 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 58 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 59 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 60 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 61 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 62 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 63 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 3 out of 7 (42.86%) + +Test serie 9: [u'88 88 88 88'] * 5 + Test 64 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) + Test 65 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 66 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + Test 67 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 68 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 69 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 70 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) + => Total passed: 15 out of 35 (42.86%) + +Test serie 10: [u'88 88 88 88'] * 10 + Test 71 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 6 out of 10 ( 60.00%) + Test 72 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) + Test 73 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 74 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 75 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 76 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 77 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 4 out of 10 ( 40.00%) + => Total passed: 18 out of 70 (25.71%) + + + ====== Total passed: 142 out of 413 (34.38%) ====== +Ran 1 test in 278.433s + + +-------- Test Results on 2017-03-09 17:06:45 --------- +Test serie 0: [u'01 23 45 67 89 ab cd ef'] * 10 + Test 1 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 2 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) + Test 3 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 4 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 5 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 6 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 7 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) + => Total passed: 31 out of 70 (44.29%) + +Test serie 1: [u'11 11 11'] * 1 + Test 8 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 9 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 10 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 11 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 12 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 13 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 14 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 3 out of 7 (42.86%) + +Test serie 2: [u'11 11 11'] * 5 + Test 15 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + Test 16 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 3 out of 5 ( 60.00%) + Test 17 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 18 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 19 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 20 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 21 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) + => Total passed: 13 out of 35 (37.14%) + +Test serie 3: [u'aa aa aa aa'] * 3 + Test 22 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 23 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 24 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 25 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 26 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 27 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 28 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + => Total passed: 10 out of 21 (47.62%) + +Test serie 4: [u'ff ff ff ff'] * 1 + Test 29 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 30 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 31 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 32 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 33 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 34 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 35 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 3 out of 7 (42.86%) + +Test serie 5: [u'ff ff ff ff'] * 10 + Test 36 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 37 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) + Test 38 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 39 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 40 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 41 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 42 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + => Total passed: 23 out of 70 (32.86%) + +Test serie 6: [u'55 55 55 55'] * 3 + Test 43 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 44 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 45 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 46 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 47 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 48 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 49 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + => Total passed: 10 out of 21 (47.62%) + +Test serie 7: [u'55 55 55 55'] * 10 + Test 50 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 4 out of 10 ( 40.00%) + Test 51 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 6 out of 10 ( 60.00%) + Test 52 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 53 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 54 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 55 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 56 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 6 out of 10 ( 60.00%) + => Total passed: 23 out of 70 (32.86%) + +Test serie 8: [u'88 88 88 88'] * 1 + Test 57 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 58 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 59 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 60 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 61 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 62 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 63 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 3 out of 7 (42.86%) + +Test serie 9: [u'88 88 88 88'] * 5 + Test 64 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 3 out of 5 ( 60.00%) + Test 65 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 66 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + Test 67 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 68 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 69 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 70 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 5 ( 60.00%) + => Total passed: 11 out of 35 (31.43%) + +Test serie 10: [u'88 88 88 88'] * 10 + Test 71 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 4 out of 10 ( 40.00%) + Test 72 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 73 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 74 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 75 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 76 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 77 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 5 out of 10 ( 50.00%) + => Total passed: 16 out of 70 (22.86%) + + + ====== Total passed: 146 out of 413 (35.35%) ====== +Ran 1 test in 278.635s + + +-------- Test Results on 2017-03-20 09:50:11 --------- +Test serie 0: [u'01 23 45 67 89 ab cd ef'] * 10 + Test 1 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 2 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) + Test 3 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 4 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 5 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 6 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 7 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) + => Total passed: 31 out of 70 (44.29%) + +Test serie 1: [u'11 11 11'] * 1 + Test 8 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 9 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 10 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 11 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 12 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 13 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 14 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 4 out of 7 (57.14%) + +Test serie 2: [u'11 11 11'] * 5 + Test 15 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + Test 16 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 3 out of 5 ( 60.00%) + Test 17 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 18 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 19 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 20 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 21 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) + => Total passed: 17 out of 35 (48.57%) + +Test serie 3: [u'aa aa aa aa'] * 3 + Test 22 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 23 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 24 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 25 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 26 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 27 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 28 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + => Total passed: 13 out of 21 (61.90%) + +Test serie 4: [u'ff ff ff ff'] * 1 + Test 29 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 30 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 31 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 32 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 33 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 34 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 35 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 3 out of 7 (42.86%) + +Test serie 5: [u'ff ff ff ff'] * 10 + Test 36 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 37 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) + Test 38 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 39 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 40 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 41 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 42 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + => Total passed: 23 out of 70 (32.86%) + +Test serie 6: [u'55 55 55 55'] * 3 + Test 43 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 44 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 45 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 46 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 47 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 48 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 49 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + => Total passed: 10 out of 21 (47.62%) + +Test serie 7: [u'55 55 55 55'] * 10 + Test 50 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 4 out of 10 ( 40.00%) + Test 51 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 6 out of 10 ( 60.00%) + Test 52 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 53 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 54 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 55 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 56 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 6 out of 10 ( 60.00%) + => Total passed: 23 out of 70 (32.86%) + +Test serie 8: [u'88 88 88 88'] * 1 + Test 57 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 58 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 59 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 60 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 61 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 62 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 63 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 3 out of 7 (42.86%) + +Test serie 9: [u'88 88 88 88'] * 5 + Test 64 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 3 out of 5 ( 60.00%) + Test 65 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 66 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + Test 67 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 68 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 69 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 70 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 5 ( 60.00%) + => Total passed: 11 out of 35 (31.43%) + +Test serie 10: [u'88 88 88 88'] * 10 + Test 71 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 4 out of 10 ( 40.00%) + Test 72 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 73 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 74 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 75 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 76 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 77 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 5 out of 10 ( 50.00%) + => Total passed: 16 out of 70 (22.86%) + + + ====== Total passed: 154 out of 413 (37.29%) ====== +Ran 1 test in 279.399s + +-------- Test Results on 2017-03-20 15:28:24 --------- +Test serie 0: [u'01 23 45 67 89 ab cd ef'] * 10 + Test 1 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) + Test 2 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 5 out of 10 ( 50.00%) + Test 3 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 4 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 5 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) + Test 6 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 7 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) + => Total passed: 30 out of 70 (42.86%) + +Test serie 1: [u'11 11 11'] * 1 + Test 8 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 9 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 10 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 11 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 12 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 13 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 14 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 5 out of 7 (71.43%) + +Test serie 2: [u'11 11 11'] * 5 + Test 15 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 2 out of 5 ( 40.00%) + Test 16 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 17 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 18 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 19 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 20 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 21 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + => Total passed: 18 out of 35 (51.43%) + +Test serie 3: [u'aa aa aa aa'] * 3 + Test 22 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 23 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 24 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 25 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 26 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 27 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 28 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + => Total passed: 14 out of 21 (66.67%) + +Test serie 4: [u'ff ff ff ff'] * 1 + Test 29 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 30 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 31 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 32 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 33 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 34 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 35 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + => Total passed: 2 out of 7 (28.57%) + +Test serie 5: [u'ff ff ff ff'] * 10 + Test 36 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 37 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 38 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 39 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 40 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 41 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 42 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + => Total passed: 21 out of 70 (30.00%) + +Test serie 6: [u'55 55 55 55'] * 3 + Test 43 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 2 out of 3 ( 66.67%) + Test 44 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 45 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 46 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 47 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 48 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 49 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + => Total passed: 11 out of 21 (52.38%) + +Test serie 7: [u'55 55 55 55'] * 10 + Test 50 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 4 out of 10 ( 40.00%) + Test 51 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) + Test 52 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 53 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 54 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) + Test 55 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 56 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + => Total passed: 30 out of 70 (42.86%) + +Test serie 8: [u'88 88 88 88'] * 1 + Test 57 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 58 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 59 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 60 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 61 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 62 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 63 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 3 out of 7 (42.86%) + +Test serie 9: [u'88 88 88 88'] * 5 + Test 64 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) + Test 65 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 4 out of 5 ( 80.00%) + Test 66 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 67 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 68 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 69 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 70 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) + => Total passed: 14 out of 35 (40.00%) + +Test serie 10: [u'88 88 88 88'] * 10 + Test 71 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 8 out of 10 ( 80.00%) + Test 72 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 7 out of 10 ( 70.00%) + Test 73 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 74 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 75 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 76 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 77 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) + => Total passed: 24 out of 70 (34.29%) + + + ====== Total passed: 172 out of 413 (41.65%) ====== +Ran 1 test in 279.376s diff --git a/examples/qa_BasicTest_rtlsdr.log b/examples/qa_BasicTest_rtlsdr.log new file mode 100644 index 0000000..b54b433 --- /dev/null +++ b/examples/qa_BasicTest_rtlsdr.log @@ -0,0 +1,114 @@ +-------- Test Results on 2017-03-24 10:30:13 --------- +Test serie 0: [u'01 23 45 67 89 ab cd ef'] * 10 + Test 1 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 2 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 3 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 4 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 5 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 6 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 7 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + => Total passed: 0 out of 70 (0.00%) + +Test serie 1: [u'11 11 11'] * 1 + Test 8 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 9 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 10 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 11 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 12 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 13 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 14 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + => Total passed: 2 out of 7 (28.57%) + +Test serie 2: [u'11 11 11'] * 5 + Test 15 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 16 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 17 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 18 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 5 out of 5 (100.00%) + Test 19 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 20 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 21 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + => Total passed: 6 out of 35 (17.14%) + +Test serie 3: [u'aa aa aa aa'] * 3 + Test 22 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 23 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 24 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 25 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 26 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 1 out of 3 ( 33.33%) + Test 27 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 28 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + => Total passed: 1 out of 21 (4.76%) + +Test serie 4: [u'ff ff ff ff'] * 1 + Test 29 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 30 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 31 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 32 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 33 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 34 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 35 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + => Total passed: 1 out of 7 (14.29%) + +Test serie 5: [u'ff ff ff ff'] * 10 + Test 36 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 37 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 38 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 39 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 5 out of 10 ( 50.00%) + Test 40 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 41 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 42 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + => Total passed: 5 out of 70 (7.14%) + +Test serie 6: [u'55 55 55 55'] * 3 + Test 43 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 44 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 45 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 46 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 47 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 48 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 49 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + => Total passed: 0 out of 21 (0.00%) + +Test serie 7: [u'55 55 55 55'] * 10 + Test 50 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 51 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 52 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 53 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 54 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 1 out of 10 ( 10.00%) + Test 55 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 56 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 10 ( 10.00%) + => Total passed: 2 out of 70 (2.86%) + +Test serie 8: [u'88 88 88 88'] * 1 + Test 57 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 58 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 59 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 60 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 61 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 62 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 63 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + => Total passed: 0 out of 7 (0.00%) + +Test serie 9: [u'88 88 88 88'] * 5 + Test 64 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 65 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 66 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 67 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + Test 68 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 69 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 70 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + => Total passed: 1 out of 35 (2.86%) + +Test serie 10: [u'88 88 88 88'] * 10 + Test 71 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 72 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 73 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 74 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 2 out of 10 ( 20.00%) + Test 75 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 76 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 77 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + => Total passed: 2 out of 70 (2.86%) + + + ====== Total passed: 20 out of 413 (4.84%) ====== +Ran 1 test in 259.808s diff --git a/examples/qa_BasicTest_usrp.log b/examples/qa_BasicTest_usrp.log new file mode 100644 index 0000000..a73e51b --- /dev/null +++ b/examples/qa_BasicTest_usrp.log @@ -0,0 +1,114 @@ +-------- Test Results on 2017-03-24 11:09:46 --------- +Test serie 0: [u'01 23 45 67 89 ab cd ef'] * 10 + Test 1 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) + Test 2 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 10 out of 10 (100.00%) + Test 3 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 4 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 5 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) + Test 6 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 7 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) + => Total passed: 38 out of 70 (54.29%) + +Test serie 1: [u'11 11 11'] * 1 + Test 8 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 9 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 10 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 11 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 12 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 13 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 14 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 5 out of 7 (71.43%) + +Test serie 2: [u'11 11 11'] * 5 + Test 15 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) + Test 16 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 5 out of 5 (100.00%) + Test 17 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 18 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + Test 19 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) + Test 20 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 21 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) + => Total passed: 21 out of 35 (60.00%) + +Test serie 3: [u'aa aa aa aa'] * 3 + Test 22 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 23 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 24 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 25 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 26 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 27 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 28 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + => Total passed: 12 out of 21 (57.14%) + +Test serie 4: [u'ff ff ff ff'] * 1 + Test 29 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 30 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 31 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 32 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 33 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 34 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 35 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + => Total passed: 2 out of 7 (28.57%) + +Test serie 5: [u'ff ff ff ff'] * 10 + Test 36 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 37 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 5 out of 10 ( 50.00%) + Test 38 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 39 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 40 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 41 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 42 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 9 out of 10 ( 90.00%) + => Total passed: 14 out of 70 (20.00%) + +Test serie 6: [u'55 55 55 55'] * 3 + Test 43 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 44 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 45 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 46 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 47 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + Test 48 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 3 ( 0.00%) + Test 49 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 3 out of 3 (100.00%) + => Total passed: 12 out of 21 (57.14%) + +Test serie 7: [u'55 55 55 55'] * 10 + Test 50 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) + Test 51 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 10 out of 10 (100.00%) + Test 52 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 53 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 54 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) + Test 55 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 56 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) + => Total passed: 40 out of 70 (57.14%) + +Test serie 8: [u'88 88 88 88'] * 1 + Test 57 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 58 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 1 out of 1 (100.00%) + Test 59 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 60 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 61 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 62 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 1 ( 0.00%) + Test 63 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 1 out of 1 (100.00%) + => Total passed: 3 out of 7 (42.86%) + +Test serie 9: [u'88 88 88 88'] * 5 + Test 64 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) + Test 65 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 5 out of 5 (100.00%) + Test 66 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 1 out of 5 ( 20.00%) + Test 67 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 68 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 69 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 5 ( 0.00%) + Test 70 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 5 out of 5 (100.00%) + => Total passed: 16 out of 35 (45.71%) + +Test serie 10: [u'88 88 88 88'] * 10 + Test 71 :: cr4-5 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) + Test 72 :: cr4-5 bw125 sf8 crc1 pwr1 :: passed 10 out of 10 (100.00%) + Test 73 :: cr4-5 bw125 sf12 crc1 pwr1 :: passed 2 out of 10 ( 20.00%) + Test 74 :: cr4-7 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 75 :: cr4-7 bw125 sf7 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 76 :: cr4-6 bw125 sf6 crc1 pwr1 :: passed 0 out of 10 ( 0.00%) + Test 77 :: cr4-6 bw125 sf7 crc1 pwr1 :: passed 10 out of 10 (100.00%) + => Total passed: 32 out of 70 (45.71%) + + + ====== Total passed: 195 out of 413 (47.22%) ====== +Ran 1 test in 294.278s diff --git a/examples/switchTests.sh b/examples/switchTests.sh new file mode 100644 index 0000000..603ae64 --- /dev/null +++ b/examples/switchTests.sh @@ -0,0 +1,17 @@ +if [ -e ./qa_BasicTest_Data_hackrf.xml ] && [ -e ./qa_BasicTest_Data_rtlsdr.xml ] && [ -e ./qa_BasicTest_Data_usrp.xml ]; then + mv ./qa_BasicTest_Data.xml ./qa_BasicTest_Data_extra.xml + mv ./qa_BasicTest_Data_hackrf.xml ./qa_BasicTest_Data.xml + echo "Current: HACKRF TESTS" +elif [ -e ./qa_BasicTest_Data_rtlsdr.xml ] && [ -e ./qa_BasicTest_Data_usrp.xml ] && [ -e ./qa_BasicTest_Data_extra.xml ]; then + mv ./qa_BasicTest_Data.xml ./qa_BasicTest_Data_hackrf.xml + mv ./qa_BasicTest_Data_rtlsdr.xml ./qa_BasicTest_Data.xml + echo "Current: RTL-SDR TESTS" +elif [ -e ./qa_BasicTest_Data_hackrf.xml ] && [ -e ./qa_BasicTest_Data_usrp.xml ] && [ -e ./qa_BasicTest_Data_extra.xml ]; then + mv ./qa_BasicTest_Data.xml ./qa_BasicTest_Data_rtlsdr.xml + mv ./qa_BasicTest_Data_usrp.xml ./qa_BasicTest_Data.xml + echo "Current: USRP TESTS" +elif [ -e ./qa_BasicTest_Data_hackrf.xml ] && [ -e ./qa_BasicTest_Data_rtlsdr.xml ] && [ -e ./qa_BasicTest_Data_extra.xml ]; then + mv ./qa_BasicTest_Data.xml ./qa_BasicTest_Data_usrp.xml + mv ./qa_BasicTest_Data_extra.xml ./qa_BasicTest_Data.xml + echo "Current: EXTRA TESTS" +fi diff --git a/python/qa_BasicTest_XML.py b/python/qa_BasicTest_XML.py index a113748..0a307e0 100644 --- a/python/qa_BasicTest_XML.py +++ b/python/qa_BasicTest_XML.py @@ -96,13 +96,19 @@ class qa_BasicTest_XML (gr_unittest.TestCase): # gr-lora/python current_dir = os.path.dirname(os.path.realpath(__file__)) + "/" - self.logFile = current_dir + '../examples/qa_BasicTest.log' - self.xmlFile = current_dir + '../examples/qa_BasicTest_Data.xml' if os.path.isfile(self.xmlFile): f = open(self.xmlFile, 'r') - self.xmlTests = xmltodict.parse(f.read())["lora-test-data"]["TEST"] + + self.xmlTests = xmltodict.parse(f.read())["lora-test-data"] + + self.logFile = current_dir + '../examples/qa_BasicTest_' + self.xmlTests['@set'] + '.log' + + self.xmlTests = self.xmlTests["TEST"] + + if type(self.xmlTests) is not list: + self.xmlTests = [ self.xmlTests ] f.close() else: raise Exception("[BasicTest_XML] '" + self.xmlFile + "' does not exist!")