Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Side by Side Diff: chrome/tools/test/generate_mime_tests.pl

Issue 10146028: Set svn:executable bit on scripts that are executable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/tools/build/win/syzygy_reorder.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/perl -w 1 #!/usr/bin/perl -w
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5 #
6 # Technically, it's a third party.
7 #
2 # Copyright 2008, Google Inc. 8 # Copyright 2008, Google Inc.
3 # All rights reserved. 9 # All rights reserved.
4 # 10 #
5 # Redistribution and use in source and binary forms, with or without 11 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are 12 # modification, are permitted provided that the following conditions are
7 # met: 13 # met:
8 # 14 #
9 # * Redistributions of source code must retain the above copyright 15 # * Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer. 16 # notice, this list of conditions and the following disclaimer.
11 # * Redistributions in binary form must reproduce the above 17 # * Redistributions in binary form must reproduce the above
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 $query_description = get_query_description($parameter); 267 $query_description = get_query_description($parameter);
262 268
263 open OUT, "> $infile" or die "Failed to open file $infile"; 269 open OUT, "> $infile" or die "Failed to open file $infile";
264 print OUT "This tests loading of a $query_description when the HTTP content- type". 270 print OUT "This tests loading of a $query_description when the HTTP content- type".
265 " is set to \"$content_type\" .\n Expected : This page should have ". 271 " is set to \"$content_type\" .\n Expected : This page should have ".
266 "$current_expected .\n\n"; 272 "$current_expected .\n\n";
267 print OUT "<script>\n window.location=\"$source\";\n</script>\n"; 273 print OUT "<script>\n window.location=\"$source\";\n</script>\n";
268 close OUT; 274 close OUT;
269 } 275 }
270 } 276 }
OLDNEW
« no previous file with comments | « chrome/tools/build/win/syzygy_reorder.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698