What's the URL of the page containing the problem?
This is a problem in the "post-review.cygwin" tool in combination the
ReviewBoard. Is this the right place to file the bug report.
What steps will reproduce the problem?
1. Create a Perforce inspection package "post-review.cygwin 158373"
What is the expected output?
No errors and inspection package created.
What do you see instead?
Unsupported line from p4 where: -
//depot/Sources/SystemDevelopment/21331/msp/baseband/arm/BCM21351/src/irqct
rl.c //fred_sdb_21331_mmi/msp/baseband/arm/BCM21351/src/irqctrl.c
s:\fred_sdb_21331_mmi\msp\baseband\arm\BCM21351\src\irqctrl.c
//depot/Sources/SystemDevelopment/21331/msp/baseband/arm/BCM21351/src/irqct
rl.c //fred_sdb_21331_mmi/msp/baseband/arm/BCM213x1/src/irqctrl.c
s:\fred_sdb_21331_mmi\msp\baseband\arm\BCM213x1\src\irqctrl.c
What operating system are you using? What browser?
Windows XP with Cygwin and Perforce.
Please provide any additional information below.
Recommended solution:
---------------------
This seems to fix it:
Replace this line:
m = re.match(r'\+?%s \/\/.+ (.+)$' % depot_path, where_info)
With this line:
m = re.search(r'\+?%s \/\/.+ (.+)$' % depot_path, where_info)