mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 10:31:02 +00:00
BRANCH=none BUG=none TEST=util/presubmit_check.sh Change-Id: I6078377603719de1d633660c69ad3a40b29ffadf Signed-off-by: Nicolas Boichat <drinkcat@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/640191 Reviewed-by: Aseda Aboagye <aaboagye@chromium.org> Reviewed-by: Che-yu Wu <cheyuw@google.com>
10 lines
382 B
Bash
Executable File
10 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright 2017 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Discover all the unit tests in extra/stack_analyzer directory and run them.
|
|
python2 -m unittest discover -b -s extra/stack_analyzer -p *_unittest.py \
|
|
&& touch extra/stack_analyzer/.tests-passed
|