From d9503aa83dc1c71df9ce93fc45c3c96609430717 Mon Sep 17 00:00:00 2001 From: Vasil Velichkov Date: Mon, 2 Sep 2019 20:26:52 +0300 Subject: grgsm_decode: Print frequency or ARFCN message on stderr For some yet unknown reasons in travis on Debian testing and Kali rolling the message gets printed after the burst and decode.sh and decrypt.sh tests fails because of this. Instead of filtering this messages in the tests I think it is better such messages to be printed on the standard error output Change-Id: Ib18be898cac74769cabf1b748e40e21d23f08e98 --- apps/grgsm_decode | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/grgsm_decode b/apps/grgsm_decode index 034014e..d754fc7 100755 --- a/apps/grgsm_decode +++ b/apps/grgsm_decode @@ -30,6 +30,7 @@ import collections import grgsm import pmt import socket +import sys class grgsm_decoder(gr.top_block): @@ -368,7 +369,7 @@ if __name__ == '__main__': parser.error("Invalid A5 version\n") if options.cfile and (options.fc is None and options.arfcn is None): - print("You haven't provided a frequency or an ARFCN - working without automatic frequency offset correction.\n") + print("You haven't provided a frequency or an ARFCN - working without automatic frequency offset correction.\n", file=sys.stderr) # handle frequency / arfcn input arfcn = None -- cgit v1.2.3