~ubuntu-branches/ubuntu/trusty/mupen64plus/trusty

« back to all changes in this revision

Viewing changes to tools/regtests/regression-video.py

  • Committer: Bazaar Package Importer
  • Author(s): Sven Eckelmann
  • Date: 2010-03-15 16:22:03 UTC
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20100315162203-dtxgbbr8q7ycnojc
Tags: 1.5+dfsg1-8
* debian/patches:
  - Add rice_fog.patch, Reduce flickering when enabling fog in rice
  - Update fix_readpng.patch, Fix FTBFS with libpng14 and remove coding style
    only changes
* Convert to 3.0 (quilt) source format
* Remove outdated README.source
* debian/control:
  - Remove shlibs:Depends for binary packages without shared libs dependencies
  - Remove unneeded build dependency to quilt
  - Upgraded to policy 3.8.4, no changes required
* Correct spelling errors found by lintian
* debian/copyright: Update copyright years
* Check all files ever published on the download page in debian/watch

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
        return False
138
138
    # check for program files
139
139
    binfiles = [ "mupen64plus" ]
140
 
    libfiles = [ "blight_input.so", "dummyaudio.so", "dummyvideo.so", "glN64.so", "glide64.so", "ricevideo.so",
 
140
    libfiles = [ "blight_input.so", "dummyaudio.so", "dummyvideo.so", "glide64.so", "ricevideo.so",
141
141
                 "mupen64_hle_rsp_azimer.so", "jttl_audio.so" ]
142
142
    filelist = [ os.path.join(srcdir, filename) for filename in binfiles ]
143
143
    filelist += [ os.path.join(srcdir, "plugins", filename) for filename in libfiles ]
164
164
        self.libdir = os.path.join(bindir, "plugins")
165
165
        self.generalParams = { }
166
166
        self.gamesAndParams = { }
167
 
        self.videoplugins = [ "glN64.so", "glide64.so", "ricevideo.so" ]
 
167
        self.videoplugins = [ "glide64.so", "ricevideo.so" ]
168
168
        self.thisdate = str(date.today())
169
169
 
170
170
    def LoadConfig(self, filename):