~ubuntu-branches/ubuntu/vivid/ardour/vivid-proposed

« back to all changes in this revision

Viewing changes to tools/sanity_check/SConscript

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler, Jaromír Mikeš, Felipe Sateler
  • Date: 2014-05-22 14:39:25 UTC
  • mfrom: (29 sid)
  • mto: This revision was merged to the branch mainline in revision 30.
  • Revision ID: package-import@ubuntu.com-20140522143925-vwqfo9287pmkrroe
Tags: 1:2.8.16+git20131003-3
* Team upload

[ Jaromír Mikeš ]
* Add -dbg package

[ Felipe Sateler ]
* Upload to experimental

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- python -*-
 
2
 
 
3
import os
 
4
import os.path
 
5
import glob
 
6
 
 
7
Import('env')
 
8
sanitycheck = env.Clone()
 
9
 
 
10
if sanitycheck['IS_OSX'] != 0:
 
11
    print ("Skip sanity check - code is Linux-only")
 
12
else:
 
13
    print ("OSX env = ", env['IS_OSX'])
 
14
    #sc = sanitycheck.Program('sanityCheck', ['main.cpp', 'systemtest.cpp'])
 
15
    #Default(sc)
 
16