aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-28 16:53:10 +0000
committerGravatar borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-28 16:53:10 +0000
commit3578eb7d065ac5d9e9e7a6b8684b3ef1b3626fbd (patch)
tree6c3adb9c45eb538528a0fecbe7afd1eec1d866d0 /tools
parent1bfe01d06b896eca94c80d9af9a6bb30216b5e42 (diff)
Move gm baselines from trunk/gm to gm-expected
- Move images - Update build slaves with the change - Update baseline tools with the change git-svn-id: http://skia.googlecode.com/svn/trunk@5319 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tools')
-rw-r--r--tools/compare_baselines.py4
-rw-r--r--tools/download_baselines.py67
2 files changed, 40 insertions, 31 deletions
diff --git a/tools/compare_baselines.py b/tools/compare_baselines.py
index 67bac4e40c..7268eb7a54 100644
--- a/tools/compare_baselines.py
+++ b/tools/compare_baselines.py
@@ -52,11 +52,11 @@ comparison.
TRUNK_PATH = os.path.join(os.path.dirname(__file__), os.pardir)
OPTION_GM_BASEDIR = '--gm-basedir'
-DEFAULT_GM_BASEDIR = os.path.join(TRUNK_PATH, 'gm')
+DEFAULT_GM_BASEDIR = os.path.join(TRUNK_PATH, os.pardir, 'gm-expected')
OPTION_PATH_TO_SKDIFF = '--path-to-skdiff'
# default PATH_TO_SKDIFF is determined at runtime
OPTION_SVN_GM_URL = '--svn-gm-url'
-DEFAULT_SVN_GM_URL = 'http://skia.googlecode.com/svn/trunk/gm'
+DEFAULT_SVN_GM_URL = 'http://skia.googlecode.com/svn/gm-expected'
def CopyAllFilesAddingPrefix(source_dir, dest_dir, prefix):
"""Copy all files from source_dir into dest_dir, adding prefix to the name
diff --git a/tools/download_baselines.py b/tools/download_baselines.py
index 60c13e7f19..3a53e813ce 100644
--- a/tools/download_baselines.py
+++ b/tools/download_baselines.py
@@ -36,8 +36,12 @@ generated actual gm results for ALL platforms.
''' + compare_baselines.HOWTO_STRING
# Base URL of SVN repository where buildbots store actual gm image results.
-SVN_BASE_URL = 'http://skia-autogen.googlecode.com/svn/gm-actual'
+GM_ACTUAL_URL = 'http://skia-autogen.googlecode.com/svn/gm-actual'
+# GM baseline image URL in regular Skia SVN repository
+GM_BASELINE_URL = 'https://skia.googlecode.com/svn/gm-expected'
+
+GM_EXPECTED_DIR = 'gm-expected'
OPTION_IGNORE_LOCAL_MODS = '--ignore-local-mods'
OPTION_ADD_NEW_FILES = '--add-new-files'
@@ -47,12 +51,15 @@ def GetLatestResultsSvnUrl(baseline_subdir):
@param baseline_subdir indicates which platform we want images for
"""
- # trim off 'gm/' prefix
- gm_prefix = 'gm%s' % os.sep
- if not baseline_subdir.startswith(gm_prefix):
- raise Exception('baseline_subdir "%s" should start with "%s"' % (
- baseline_subdir, gm_prefix))
- return '%s/%s' % (SVN_BASE_URL, baseline_subdir[len(gm_prefix):])
+ return '%s/%s' % (GM_ACTUAL_URL, baseline_subdir)
+
+def GetBaselineSvnUrl(baseline_subdir):
+ """Return SVN URL from which we can check out the baseline images for this
+ baseline type.
+
+ @param baseline_subdir indicates which platform we want baselines for
+ """
+ return '%s/%s' % (GM_BASELINE_URL, baseline_subdir)
def CopyMatchingFiles(source_dir, dest_dir, filename_pattern,
only_copy_updates=False):
@@ -82,7 +89,13 @@ def DownloadBaselinesForOnePlatform(baseline_subdir):
@param baseline_subdir
"""
# Create repo_to_modify to handle the SVN repository we will add files to.
- repo_to_modify = svn.Svn(baseline_subdir)
+ gm_dir = os.path.join(os.pardir, GM_EXPECTED_DIR) # Shouldn't assume we're in trunk...
+ try:
+ os.makedirs(gm_dir)
+ except:
+ pass
+ repo_to_modify = svn.Svn(gm_dir)
+ repo_to_modify.Checkout(GetBaselineSvnUrl(baseline_subdir), baseline_subdir)
# If there are any locally modified files in that directory, exit
# (so that we don't risk overwriting the user's previous work).
@@ -95,17 +108,19 @@ def DownloadBaselinesForOnePlatform(baseline_subdir):
baseline_subdir, OPTION_IGNORE_LOCAL_MODS))
# Download actual gm images into a separate repo in a temporary directory.
- tempdir = tempfile.mkdtemp()
- download_repo = svn.Svn(tempdir)
- download_repo.Checkout(GetLatestResultsSvnUrl(baseline_subdir), '.')
+ actual_dir = tempfile.mkdtemp()
+ actual_repo = svn.Svn(actual_dir)
+ print 'Using %s as a temp dir' % actual_dir
+ actual_repo.Checkout(GetLatestResultsSvnUrl(baseline_subdir), '.')
# Copy any of those files we are interested in into repo_to_modify,
# and then delete the temporary directory.
- CopyMatchingFiles(source_dir=tempdir, dest_dir=baseline_subdir,
+ CopyMatchingFiles(source_dir=actual_dir,
+ dest_dir=os.path.join(gm_dir, baseline_subdir),
filename_pattern='*.png',
only_copy_updates=(not options.add_new_files))
- shutil.rmtree(tempdir)
- download_repo = None
+ shutil.rmtree(actual_dir)
+ actual_repo = None
# Add any new files to SVN control (if we are running with add_new_files).
if options.add_new_files:
@@ -140,18 +155,18 @@ def Main(options, args):
# See http://code.google.com/p/skia/issues/detail?id=678
#
# For now, I generate this list using these Unix commands:
- # svn ls http://skia.googlecode.com/svn/trunk/gm | grep ^base | sort >/tmp/baselines
+ # svn ls http://skia.googlecode.com/svn/gm-expected | grep ^base | sort >/tmp/baselines
# svn ls http://skia-autogen.googlecode.com/svn/gm-actual | grep ^base | sort >/tmp/actual
# comm -1 -2 /tmp/baselines /tmp/actual
args = [
- 'gm/base-android-galaxy-nexus',
- 'gm/base-android-nexus-7',
- 'gm/base-android-nexus-s',
- 'gm/base-android-xoom',
- 'gm/base-macmini',
- 'gm/base-macmini-lion-float',
- 'gm/base-shuttle-win7-intel-float',
- 'gm/base-shuttle_ubuntu12_ati5770',
+ 'base-android-galaxy-nexus',
+ 'base-android-nexus-7',
+ 'base-android-nexus-s',
+ 'base-android-xoom',
+ 'base-macmini',
+ 'base-macmini-lion-float',
+ 'base-shuttle-win7-intel-float',
+ 'base-shuttle_ubuntu12_ati5770',
]
# Trim all subdir names.
@@ -159,12 +174,6 @@ def Main(options, args):
for arg in args:
baseline_subdirs.append(arg.rstrip(os.sep))
- # Make sure all those subdirectories exist.
- for baseline_subdir in baseline_subdirs:
- if not os.path.isdir(baseline_subdir):
- raise Exception('could not find baseline_subdir "%s"' %
- baseline_subdir)
-
# Process the subdirs, one at a time.
for baseline_subdir in baseline_subdirs:
DownloadBaselinesForOnePlatform(baseline_subdir=baseline_subdir)