mirror of
https://github.com/ceph/ceph
synced 2025-01-02 09:02:34 +00:00
fbabd42494
Change interpreter from /bin/bash to /bin/sh. bash is not guaranteed to be installed on all Unix systems, and it's not guaranteed to be installed into /bin either. There are other scripts that specify /bin/bash; they need to be examined one by one to look for bashisms. This was the only one I had to modify to get unit tests working. Signed-off-by: Alan Somers <asomers@gmail.com> Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
20 lines
689 B
Bash
Executable File
20 lines
689 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Ceph - scalable distributed file system
|
|
#
|
|
# Copyright (C) 2013 Cloudwatt <libre.licensing@cloudwatt.com>
|
|
#
|
|
# Author: Loic Dachary <loic@dachary.org>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU Library Public License as published by
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
# any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Library Public License for more details.
|
|
#
|
|
CEPH_BUFFER_TRACK=true ./unittest_bufferlist
|