equal
deleted
inserted
replaced
751 build_status_file = os.path.join (env['NS3_BUILDDIR'], env['NS3_ACTIVE_VARIANT'], 'build-status.py') |
751 build_status_file = os.path.join (env['NS3_BUILDDIR'], env['NS3_ACTIVE_VARIANT'], 'build-status.py') |
752 out = open(build_status_file, 'w') |
752 out = open(build_status_file, 'w') |
753 out.write('#! /usr/bin/env python\n') |
753 out.write('#! /usr/bin/env python\n') |
754 out.write('\n') |
754 out.write('\n') |
755 out.write('# Programs that are runnable.\n') |
755 out.write('# Programs that are runnable.\n') |
756 out.write('NS3_RUNNABLE_PROGRAMS = ' + str(env['NS3_RUNNABLE_PROGRAMS']) + '\n') |
756 out.write('ns3_runnable_programs = ' + str(env['NS3_RUNNABLE_PROGRAMS']) + '\n') |
757 out.write('\n') |
757 out.write('\n') |
758 out.write('# Scripts that are runnable.\n') |
758 out.write('# Scripts that are runnable.\n') |
759 out.write('NS3_RUNNABLE_SCRIPTS = ' + str(env['NS3_RUNNABLE_SCRIPTS']) + '\n') |
759 out.write('ns3_runnable_scripts = ' + str(env['NS3_RUNNABLE_SCRIPTS']) + '\n') |
760 out.write('\n') |
760 out.write('\n') |
761 out.close() |
761 out.close() |
762 |
762 |
763 if Options.options.lcov_report: |
763 if Options.options.lcov_report: |
764 lcov_report() |
764 lcov_report() |