[Bug 1853144] Re: main.mysqlpump_basic_lz4 dep8 test fails with a false positive

2019-12-03 Thread Andreas Hasenack
This is fixed actually, the failing test in 8.0.18 is another one.
8.0.17 is what failed with the lz4 error.

** Changed in: mysql-8.0 (Ubuntu)
   Status: Triaged => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server, which is subscribed to mysql-8.0 in Ubuntu.
https://bugs.launchpad.net/bugs/1853144

Title:
  main.mysqlpump_basic_lz4 dep8 test fails with a false positive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1853144/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1853144] Re: main.mysqlpump_basic_lz4 dep8 test fails with a false positive

2019-12-03 Thread Andreas Hasenack
If the test just wants to check if lz4 exists and runs, then its output
should be redirected to /dev/null, maybe that's the best fix here?

-- 
You received this bug notification because you are a member of Ubuntu
Server, which is subscribed to mysql-8.0 in Ubuntu.
https://bugs.launchpad.net/bugs/1853144

Title:
  main.mysqlpump_basic_lz4 dep8 test fails with a false positive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1853144/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1853144] Re: main.mysqlpump_basic_lz4 dep8 test fails with a false positive

2019-12-03 Thread Andreas Hasenack
mysql in focal already has a fix for this:
-  --exec lz4 -V 2> $LZ4_EXEC_LOG
+  --exec lz4 -V > $LZ4_EXEC_LOG 2>&1

But that just makes sure we get the lz4 version in the log file,
regardless of the lz4 version.

But this is odd, since the result file doesn't have that string, so it
will never match the test result. If we add it to the results file, it
will have to be updated every time lz4 is updated, which is suboptimal
to say the least.

-- 
You received this bug notification because you are a member of Ubuntu
Server, which is subscribed to mysql-8.0 in Ubuntu.
https://bugs.launchpad.net/bugs/1853144

Title:
  main.mysqlpump_basic_lz4 dep8 test fails with a false positive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1853144/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1853144] Re: main.mysqlpump_basic_lz4 dep8 test fails with a false positive

2019-12-03 Thread Andreas Hasenack
In eoan it's in stderr, with 1.9.1-1:

andreas@nsnx:~$ lz4 -V
*** LZ4 command line interface 64-bits v1.9.1, by Yann Collet ***
andreas@nsnx:~$ lz4 -V 2>/dev/null
andreas@nsnx:~$ lz4 -V > /dev/null
*** LZ4 command line interface 64-bits v1.9.1, by Yann Collet ***
andreas@nsnx:~$ 


In focal-proposed it's in stdout, with 1.9.2-2:
ubuntu@f1:~$ lz4 -V
*** LZ4 command line interface 64-bits v1.9.2, by Yann Collet ***
ubuntu@f1:~$ lz4 -V > /dev/null
ubuntu@f1:~$ lz4 -V 2>/dev/null
*** LZ4 command line interface 64-bits v1.9.2, by Yann Collet ***
ubuntu@f1:~$

-- 
You received this bug notification because you are a member of Ubuntu
Server, which is subscribed to mysql-8.0 in Ubuntu.
https://bugs.launchpad.net/bugs/1853144

Title:
  main.mysqlpump_basic_lz4 dep8 test fails with a false positive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1853144/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs