~jan-kneschke/mysql-proxy/test-suite-refactoring

« back to all changes in this revision

Viewing changes to tests/suite/run-tests.lua

  • Committer: jan at mysql
  • Date: 2010-08-09 07:10:16 UTC
  • Revision ID: jan@mysql.com-20100809071016-s04a17hq4gphsmu0
don't set the exitcode = FAIL if we skipped tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
 
138
138
                shellutils.print_verbose("# << (exitcode = " .. r .. ")" )
139
139
 
140
 
                if r ~= 0 and exitcode == 0 then
 
140
                if r ~= 0 and r ~= 77 and exitcode == 0 then
141
141
                        exitcode = r
142
142
                end
143
143