File: bake.py

package info (click to toggle)
ns3 3.31%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 131,744 kB
  • sloc: cpp: 520,245; python: 415,675; ansic: 7,327; xml: 4,012; makefile: 2,088; sh: 825; javascript: 161; perl: 102
file content (39 lines) | stat: -rwxr-xr-x 1,455 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python3

###############################################################################
# Copyright (c) 2013 INRIA
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation;
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
# Authors: Daniel Camara  <daniel.camara@inria.fr>
#          Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
###############################################################################
# bake.py
#
# Bake executable, in fact it is just a wrapper for the main Bake class.  

import sys
import bake

try:
    b = bake.Bake()
    b.main(sys.argv)
except SystemExit as e: 
    sys.exit(e)
except: 
    print("  > Unexpected exception!\n" 
          "    Please register the error at https://www.nsnam.org/bugzilla, \n"
          "    with a copy of the trace below and, if possible, a list of steps to reproduce the error!<")
    sys.stdout.flush()
    bake.Utils.print_backtrace()