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

Side by Side Diff: net/data/verify_certificate_chain_unittest/generate-all.sh

Issue 1414393008: Add scripts to generate simple test data for certificate verification. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@key_usages
Patch Set: add moar test Created 5 years 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
OLDNEW
1 #!/bin/bash
2
1 # Copyright 2015 The Chromium Authors. All rights reserved. 3 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 5 # found in the LICENSE file.
4 6
5 # pylint: disable=unused-wildcard-import 7 set -e
6 # pylint: disable=wildcard-import 8 set -x
7 9
8 from devil.android.battery_utils import * 10 for script in generate-*.py ; do
11 python "$script"
12 done
13
14 # Cleanup temporary files.
15 rm -rf *.pyc
16 rm -rf out/
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698