Difference between revisions of "Package Building QA Check List"

From Trinity Desktop Project Wiki
Jump to navigation Jump to search
imported>Eliddell
(Created page with "* Check two apps in each menu category of the T-Menu to verify the Help file handbook is available. * Run a system test looking for broken sym links. A short shell script: ...")
 
m (Added to "Packagers" category)
Line 24: Line 24:
   
 
-- DarrellAnderson - 03 Dec 2011
 
-- DarrellAnderson - 03 Dec 2011
  +
  +
[[Category:Packagers]]

Revision as of 17:45, 16 February 2022

  • Check two apps in each menu category of the T-Menu to verify the Help file handbook is available.
  • Run a system test looking for broken sym links. A short shell script:
find / -path '/proc' -prune -o -path '/dev' -prune -o -path '/home' -prune -o -path '/mnt' -prune -o -path '/sys' -prune -o -type l -print | perl -nle '-e || print'
  • Do all apps in the T-Menu start?
  • Check the xsession logs for unexpected or unusual errors and messages.
  • Do kdesu/kdesudo work as expected for your distro?
  • Look (grep) for the following errors in build logs:
No such file or directory
Integer expression expected
unary operator expected
`:='-style assignments are not portable
. . . is not portable
WARNING: xxx: accepted by the compiler, rejected by the preprocessor!
CMake Warning:
unknown icon type
WARNING: unrecognized options:

-- DarrellAnderson - 03 Dec 2011