Skip to content

Commit

Permalink
[vm/fuzzer] List versions for each git commit
Browse files Browse the repository at this point in the history
Rationale:
Go through all git commits and list dartfuzz versions.
Change-Id: I2d6ac23fcff51631a40a97bb53289fd60e65000c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/116747
Reviewed-by: Aart Bik <ajcbik@google.com>
Commit-Queue: Felicitas Hetzelt <felih@google.com>
  • Loading branch information
feli-citas authored and commit-bot@chromium.org committed Sep 11, 2019
1 parent c6b0ae1 commit c8e389f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions runtime/tools/dartfuzz/list_dartfuzz_versions.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
#
# Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.

for i in $(git log --oneline | grep -- '\[vm/fuzzer\]' | awk '{print $1}')
do
echo $i
git show $i:runtime/tools/dartfuzz/dartfuzz.dart | grep 'const String version = ' | awk '{print $NF}'
done

0 comments on commit c8e389f

Please sign in to comment.