~ubuntu-branches/ubuntu/saucy/libfile-spec-perl/saucy-proposed

« back to all changes in this revision

Viewing changes to t/Spec.t

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov, Martín Ferrari, gregor herrmann
  • Date: 2008-01-17 23:14:23 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080117231423-ze9qr14qplbauhsy
Tags: 3.2700-1
[ Martín Ferrari ]
* New upstream release.
* debian/watch: added version mangle to cope with 2 and 4-digit long
  versions.
* debian/copyright: they have changed the copyright holder for the files
  grabbed from BSD, but the notice on the documentation remained. So I have
  put the two copyright holders (curse upstream).

[ gregor herrmann ]
* Add ${shlibs:Depends} to debian/control and dh_shlibdeps to debian/rules
  to fix a policy violation.
* New upstream release.
* debian/copyright: update years of copyright for ppport.h.
* debian/rules: install upstream changelog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
191
191
[ "Win32->catdir('\\d1','d2')",             '\\d1\\d2'         ],
192
192
[ "Win32->catdir('\\d1','\\d2')",           '\\d1\\d2'         ],
193
193
[ "Win32->catdir('\\d1','\\d2\\')",         '\\d1\\d2'         ],
194
 
[ "Win32->catdir('','/d1','d2')",           '\\\\d1\\d2'         ],
195
 
[ "Win32->catdir('','','/d1','d2')",        '\\\\\\d1\\d2'       ],
196
 
[ "Win32->catdir('','//d1','d2')",          '\\\\\\d1\\d2'       ],
197
 
[ "Win32->catdir('','','//d1','d2')",       '\\\\\\\\d1\\d2'     ],
 
194
[ "Win32->catdir('','/d1','d2')",           '\\d1\\d2'         ],
 
195
[ "Win32->catdir('','','/d1','d2')",        '\\d1\\d2'         ],
 
196
[ "Win32->catdir('','//d1','d2')",          '\\d1\\d2'         ],
 
197
[ "Win32->catdir('','','//d1','d2')",       '\\d1\\d2'         ],
198
198
[ "Win32->catdir('','d1','','d2','')",      '\\d1\\d2'           ],
199
199
[ "Win32->catdir('','d1','d2','d3','')",    '\\d1\\d2\\d3'       ],
200
200
[ "Win32->catdir('d1','d2','d3','')",       'd1\\d2\\d3'         ],
206
206
[ "Win32->catdir('A:/d1','B:/d2','d3','')", 'A:\\d1\\B:\\d2\\d3' ],
207
207
[ "Win32->catdir('A:/')",                   'A:\\'               ],
208
208
[ "Win32->catdir('\\', 'foo')",             '\\foo'              ],
209
 
 
 
209
[ "Win32->catdir('','','..')",              '\\'                 ],
210
210
 
211
211
[ "Win32->catfile('a','b','c')",        'a\\b\\c' ],
212
212
[ "Win32->catfile('a','b','.\\c')",      'a\\b\\c'  ],
213
213
[ "Win32->catfile('.\\a','b','c')",      'a\\b\\c'  ],
214
214
[ "Win32->catfile('c')",                'c' ],
215
215
[ "Win32->catfile('.\\c')",              'c' ],
 
216
[ "Win32->catfile('a/..','../b')",       '..\\b' ],
216
217
 
217
218
 
218
219
[ "Win32->canonpath('')",               ''                    ],
224
225
[ "Win32->canonpath('//a\\b//c')",      '\\\\a\\b\\c'         ],
225
226
[ "Win32->canonpath('/a/..../c')",      '\\a\\....\\c'        ],
226
227
[ "Win32->canonpath('//a/b\\c')",       '\\\\a\\b\\c'         ],
227
 
[ "Win32->canonpath('////')",           '\\\\\\'              ],
 
228
[ "Win32->canonpath('////')",           '\\'                  ],
228
229
[ "Win32->canonpath('//')",             '\\'                  ],
229
 
[ "Win32->canonpath('/.')",             '\\.'                 ],
 
230
[ "Win32->canonpath('/.')",             '\\'                  ],
230
231
[ "Win32->canonpath('//a/b/../../c')",  '\\\\a\\b\\c'         ],
231
232
[ "Win32->canonpath('//a/b/c/../d')",   '\\\\a\\b\\d'         ],
232
233
[ "Win32->canonpath('//a/b/c/../../d')",'\\\\a\\b\\d'         ],
694
695
[ "Cygwin->rel2abs('..','/t1/t2/t3')",             '/t1/t2/t3/..'    ],
695
696
[ "Cygwin->rel2abs('../t4','/t1/t2/t3')",          '/t1/t2/t3/../t4' ],
696
697
[ "Cygwin->rel2abs('/t1','/t1/t2/t3')",            '/t1'             ],
 
698
[ "Cygwin->rel2abs('//t1/t2/t3','/foo')",          '//t1/t2/t3'      ],
697
699
 
698
700
) ;
699
701