Comment 0 for bug 1016746

Revision history for this message
Marc Tardif (cr3) wrote :

checkbox (0.14) quantal; urgency=low

  [Brendan Donegan]
  * [FEATURE] Python 2 to 3 conversion:
    * scripts/create_connection - switched to using argparse and fixed
      representation of octal literal
    * scripts/internet_test - ran 2to3 tool and decoded result of
      check_output. Also replaced optparse with argparse
    * scripts/memory_info
    * scripts/removable_storage_test - ran 2to3 tool and fixed some
      encoding issues
    * scripts/removable_storage_watcher - ran 2to3 tool and swapped
      use of gobject with gi.repository.GObject
    * scripts/xrandr_cycle - ran 2to3 tool and fixed encoding issue
    * scripts/obex_send - ran 2to3 tool and swapped
      use of gobject with gi.repository.GObject
  * Update touchpad.py to use gsettings instead of deprecated gconf
    (LP: #1004212)
  * Instead of checking output of nmcli con up in create_connection,
    check the return code is success instead (LP: #1013537)
  * base64 encode the after suspend screenshot attachement so that it can
    be uploaded properly (LP: #1016126)
  * Fixed simple type in xorg_memory_test, introduced by Python3
    conversion (LP: #1016387)
  * [FEATURE] Add suspend/bluetooth_obex_after_suspend_auto test to be
    used during fully automated SRU testing

  [Marc Tardif]
  * [FEATURE] Reworked media_keys_test into key_test, making it more generic
    and able to test for any key that sends an scancode. Used it to implement
    a test for the Super key.
  * [FEATURE] Added new interactive and auto-verifying touchpad scrolling
    test.
  * [FEATURE] Python 2 to 3 conversion:
    * scripts/ansi_parser
    * scripts/cking_suite
    * scripts/floppy_test
    * scripts/network_bandwidth_test
    * scripts/cpu_scaling_test
  * Removed sleep_test script no longer used by any test definition.
  * [FEATURE] Deprecated scripts:
    * scripts/autotest_filter and scripts/autotest_suite
    * scripts/ltp_filter and scripts/ltp_suite
    * scripts/mago_filter and scripts/mago_suite
    * scripts/qa_regression_suite

  [Daniel Manrique]
  * New version 0.14 for Quantal Quetzal development.
  * Set the correct user (root) for fwts-wakealarm test (LP: #1004102)
  * Set correct user (root) for usb/storage-preinserted, so it works correctly
    on servers (LP: #1004131)
  * Log (at level INFO) name of each message we execute, so the currently
    running job can be determined by looking at the logfile, rather than
    hunting through process lists.
  * [FEATURE] Added script and jobs to collect and attach output from
    alsa-info.sh.
  * Assume utf-8 encoding always, when opening template files.
    (LP: #1015174)
  * [FEATURE] Replaced the context menu in the selection tree with explicit
    "select/deselect all" buttons.

  [Javier Collado]
  * Submission screen in Qt interface updated to support certification client:
    - customize contents depending on the upload target (launchpad or certification)
    - display links to the report properly in the show_entry method
  * Fixed qt interface show_entry method preopulates widget that gets
    user input (LP: #1000451)
  * Added customizable deselect_warning message in qt show_tree method (LP: #1000443)
  * show_error method shows long text properly in gtk/qt interfaces (LP:
    #1012052)

  [Jeff Lane]
  * [FEATURE] Changes to Power Management testing in Checkbox:
    * scripts/pm_test: added a slightly modified version of OEM team's pm.py
      script for reboot/poweroff testing
    * jobs/hibernate.txt.in: modified hibernate test to use fwts and added new
      jobs to attach log files from hibernate testing.
    * jobs/power-management.txt.in: added new poweroff and reboot jobs using pm_test
      script. Added jobs to attach logs from reboot and poweroff tests to
      results.
    * jobs/stress.txt.in: modified suspend_30_cycles and hibernate_30_cycles to
      use fwts. Added jobs to attach logs from 30 cycle tests to results.
    * jobs/suspend.txt.in: Modified suspend_advanced and suspend_advanced_auto to use
      fwts. Added job to attach log from suspend_advanced and suspend_advanced_auto
      to results.
  * [FEATURE] jobs/miscellanea.txt.in: added a job to gather tester info for
    certification purposes. Not to be used for UF.
  * [FEATURE] Python 2 to 3 conversion:
    * scripts/cpu_topology: ran 2to3, made modificates based on code review and
      tested script to verify functionality.
    * scripts/disk_smart: ported to Python 3. Inserted bits to decode byte
      data returned by Popen. Fixed list_handler to decode bytes types to clean
      up debug output. Added bits to improve debug output. Migrated from
      optparse to argparse.
    * scripts/network_check: ran 2to3 and that was all that was needed. Also
      took the liberty of migrating from optparse to ArgParse sine we're
      Python3 only now.
    * scripts/network_device_info: ran 2to3 and changed shebang.
    * scripts/network_info: ran 2to3 and changed shebang. Fixed encoding issue
      with interface[:15] (needed to be a bytes object).
    * scripts/fwts_test: ran 2to3 and changed shebang, fixed an encoding bug
      with Popen output. Cleaned up the final output to be more useful for
      debugging test failures.
    * scripts/keyboard_test: nothing to do for conversion beyond changing shebang.
    * scripts/network_ntp_test: 2to3 changed nothing, so modified shebang.
      Fixed an encoding issue with Popen output in. Re-inserted a call to
      SilentCall() that was removed from TimeSkew() by someone in a previous
      revision, which made the TimeSkew() function do nothing. Fixed an
      unbuffered I/O error in SilentCall() discovered while testing Python3
      changes.
    * scripts/optical_detect, scripts/optical_read_test: ran 2to3 and changed
      shebang. Changes were minimal.
    * scripts/xorg_memory_test: 2to3 made minimal changes, modifed shebang.
      Converted optparse code to argparse code and replaced sys.argv[] stuff
      with more useful positional arguments. Removed a redundant import that
      2to3 injected.
    * scripts/resolution_test: ran 2to3 with minimal changes. Changed shebang.
      Converted optparse to argparse and removed unnecessary calls to
      sys.argv[]
    * scripts/pm_log_check: ran 2to3 and changed shebang.
    * scripts/pm_test: ran 2to3 and changed shebang. After a lot of trial and
      error, changed the way xinput is called to avoid confusing bytecode
      embedded in the command output that was causing problems with
      bytes.decode() on the "after reboot" hardware checks.

  [Jeff Marcom]
  * [FEATURE] Python 2 to 3 conversion:
    * scripts/memory_info
    * scripts/memory_test
    * scripts/touchpad_test
  * Deprecated: wake_on_lan_test
  * Update touchpad.py to use gsettings instead of deprecated gconf
    (LP: #1004212)

  [Marc Tardif]
  * [FEATURE] Reworked media_keys_test into key_test, making it more generic
    and able to test for any key that sends an scancode. Used it to implement
    a test for the Super key.
  * [FEATURE] Added new interactive and auto-verifying touchpad scrolling
    test.
  * Removed sleep_test script no longer used by any test definition.
  * Migrated project minus scripts to Python 3.

  [Sylvain Pineau]
  * [FEATURE] Python 2 to 3 conversion:
    * scripts/gst_pipeline_test. Migrated to PyGI.
    * scripts/removable_resource: Add a resource job to identify removable
      block devices. __disks__ jobs updated to run only on internal drives.
  * [FEATURE] jobs/benchmarks.txt.in, scripts/pts_run: Add a reworked launcher
    for phoronix-test-suite tests.
  * [FEATURE] Python 2 to 3 conversion:
  * jobs/stress.txt.in: add OEM team's stress tests (including reboot and poweroff)
    and log analysis jobs