~pwlars/ubuntu-test-cases/auto-offline-devices

« back to all changes in this revision

Viewing changes to scripts/run-smoke

  • Committer: paul.larson at canonical
  • Date: 2014-09-24 17:01:57 UTC
  • mfrom: (299.3.3 touch)
  • Revision ID: paul.larson@canonical.com-20140924170157-0r7dc2uexbol20r3
To temporarily skip unity8 tests for non rtm images until lp:1371454 gets fixed

Show diffs side-by-side

added added

removed removed

Lines of Context:
314
314
            os.environ['DASHBOARD_IMAGE'] = image
315
315
        cargs = [os.path.join(script_dir, 'run-autopilot-tests.sh')]
316
316
        for app in args.app:
 
317
            # XXX psivaa 20140924 Unity8 tests hang on non-rtm images
 
318
            # skipped temporarily
 
319
            if (args.image_type != 'touch_stable' and app == 'unity8'):
 
320
                logging.info('====== Unity8 Tests are skipped temporarily'
 
321
                             ' non rtm Images: lp: 1371454 ======')
 
322
                continue
317
323
            cargs.extend(['-a', app])
318
324
        with statsd.time_it('APPS'):
319
325
            _run(cargs)
375
381
                dashboard_api.result_queue(image, build, x)
376
382
        if args.app:
377
383
            for x in args.app:
 
384
                # XXX psivaa 20140924 Unity8 tests hang on non-rtm images
 
385
                # skipped temporarily
 
386
                if (args.image_type != 'touch_stable' and x == 'unity8'):
 
387
                    logging.info('====== Unity8 Tests are skipped temporarily'
 
388
                                 ' non rtm Images lp: 1371454  ======')
 
389
                    continue
378
390
                dashboard_api.result_queue(image, build, x)
379
391
 
380
392
        _test_utah(args, build, image)