~dpigott/lava-dispatcher/correct-more-fatload

« back to all changes in this revision

Viewing changes to lava_dispatcher/lava_test_shell.py

  • Committer: Andy Doan
  • Date: 2013-01-30 05:33:55 UTC
  • Revision ID: andy.doan@linaro.org-20130130053355-8pzao73zmemwtutd
Tags: 2013.01, release-0.32.1
testdef_meta data has not yet been approved in our bundle format

we need to release today but we aren't yet ready to include the
proposed update to the bundle format. For now, I'm just backing
out the part of revno 548 that added this information to the bundle

Show diffs side-by-side

added added

removed removed

Lines of Context:
292
292
    uuid = _read_content(os.path.join(test_run_dir, 'analyzer_assigned_uuid'))
293
293
    attachments = _get_run_attachments(test_run_dir, testdef, stdout)
294
294
    attributes = _attributes_from_dir(os.path.join(test_run_dir, 'attributes'))
295
 
    testdef_metadata = _read_content(os.path.join(test_run_dir,
296
 
                                                  'testdef_metadata'))
 
295
    # XXX testdef_metadata = _read_content(os.path.join(test_run_dir,
 
296
    # XXX                                              'testdef_metadata'))
297
297
 
298
298
    testdef = yaml.load(testdef)
299
 
    testdef_metadata = yaml.load(testdef_metadata)
 
299
    # XXX testdef_metadata = yaml.load(testdef_metadata)
300
300
    if uuid in testdefs_by_uuid:
301
301
        sw_sources = testdefs_by_uuid[uuid]._sw_sources
302
302
    else:
314
314
        'hardware_context': hwcontext,
315
315
        'attachments': attachments,
316
316
        'attributes': attributes,
317
 
        'testdef_metadata': testdef_metadata,
 
317
        # XXX 'testdef_metadata': testdef_metadata,
318
318
    }
319
319
 
320
320